Disable Data Execution Prevention (DEP) in Windows 2003
March 25th, 2010Right click on “my computer” –> properties –> “advanced” –> “startup and recovery” –> “setting” Choose “edit”
Change
/NoExecute=OptIn
to:
/NoExecute=AlwaysOff
And reboot
Right click on “my computer” –> properties –> “advanced” –> “startup and recovery” –> “setting” Choose “edit”
Change
/NoExecute=OptIn
to:
/NoExecute=AlwaysOff
And reboot
How du you configure and allow FTPS and RPD from a specific public IP on a linksys wrt54g router with the dd-wrt firmware?
iptables -t nat -I PREROUTING -s 85.x.x.2 -p tcp –dport 3389 -j DNAT –to 192.168.1.20
iptables -I FORWARD -d 192.168.1.20 -p tcp –dport 3389 -j ACCEPT
iptables -t nat -I PREROUTING -s 85.x.x.2 -p tcp –dport 60000:61000 -j DNAT –to 192.168.1.20
iptables -I FORWARD -d 192.168.1.20 -p tcp –dport 60000:61000 -j ACCEPT
iptables -t nat -I PREROUTING -s 85.x.x.2 -p tcp –dport 990 -j DNAT –to 192.168.1.20
iptables -I FORWARD -d 192.168.1.20 -p tcp –dport 990 -j ACCEPT