Turn Windows Hybernate state on/off by using the powercfg tool. If you have to run a download for the next 5 hours and the OS sets the computer after 20 minutes automatically into the hybernate state powercfg MS-DOS command is quite handy. Turn the hybernate state off 1 2 3 4 5   C:\Users\run> powercfg [...]

read full post »

Windows Hacking Toolset

During the last months I published some tools which are … well not really of great use when used allone but using them combined can be quite entertaining. I developed them in the context of AyCarrumba, a tool that is supposed to be the GUI component to operate all these tools to intercept and modify [...]

read full post »

Turn the firewall on on the currently active profile with netsh. 1 2 3 4 5   C:\Users\run> netsh advfirewall set currentprofile state on OK.   C:\Users\run> Turn the firewall off on the currently active profile with netsh. 1 2 3 4 5   C:\Users\run> netsh advfirewall set currentprofile state off OK.   C:\Users\run>

read full post »

Adds a new inbound firewall rule that filters traffic by allowing network packets that match the specified criteria. 1 2 3 4 5   C:\Users\run>netsh advfirewall firewall add rule name="Open Port 80" dir=in action=allow protocol=TCP localport=80 OK.   C:\Users\run> Removes an inbound firewall rule. 1 2 3 4 5   C:\Users\run> netsh advfirewall firewall delete [...]

read full post »

C – Sending ARP Requests

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [...]

read full post »

older posts »