Pirate-inc

FWB

Oct 28th, 2012
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.31 KB | None | 0 0
  1. TCPSTARTUP ()
  2. $__IP = TCPNAMETOIP ("WWW.GOOGLE.COM")
  3. $T_INIT = TIMERINIT ()
  4. $RESULT = TCPCONNECT ($__IP,80)
  5. $T_DIFF = TIMERDIFF ($T_INIT)
  6. SELECT
  7.     CASE $T_DIFF < 100 AND $RESULT <= 0
  8.         MSGBOX (0, _
  9.         "firwall detection by : evileye-sc (c) [ private ]","socket connection error :"&@CRLF& _
  10.         "     [+] 99% = firwall it config to : block all network"&@CRLF& _
  11.         "     [+] 01% = ds system service error"&@CRLF&@CRLF& _
  12.         "result = bombe not actived" _
  13.         ,0)
  14.     CASE $T_DIFF > 100 AND $RESULT <= 0
  15.         MSGBOX (0, _
  16.         "firwall detection by : evileye-sc (c) [ private ]","firwall detected :"&@CRLF& _
  17.         "     [+] user denyed connection by firwall"&@CRLF&@CRLF& _
  18.         "result = bombe not actived" _
  19.         ,0)
  20.     CASE $T_DIFF < 100 AND $RESULT > 0
  21.         MSGBOX (0, _
  22.         "Firwall detection by : evileye-sc (c) [ private ]","connetion etablished :"&@CRLF& _
  23.         "     [+] 50% = firwall it config to : all network access or ruler actived for this process"&@CRLF& _
  24.         "     [+] 50% = no firwall used"&@CRLF&@CRLF& _
  25.         "result = bombe actived" _
  26.         ,0)
  27.     CASE $T_DIFF > 100 AND $RESULT > 0
  28.         MSGBOX (0, _
  29.         "firwall detection by : evileye-sc (c) [ private ]","firewall detected :"&@CRLF& _
  30.         "     [+] user allow connection by firwall"&@CRLF&@CRLF& _
  31.         "result = bombe not actived" _
  32.         ,0)
  33.     ENDSELECT
  34. $T_INIT = 0
  35. TCPSHUTDOWN ()
Advertisement
Add Comment
Please, Sign In to add comment