Ibrahim Posted September 26, 2007 Share Posted September 26, 2007 you will need to change the gateway ip and mac address--by the way somebody helped it's not all on my owncapture_.au3On.icoOff.ico [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
jvanegmond Posted September 26, 2007 Share Posted September 26, 2007 Why do you ping www.autoitscript.com and do nothing with the return value or the error flag? github.com/jvanegmond Link to comment Share on other sites More sharing options...
BrettF Posted September 26, 2007 Share Posted September 26, 2007 "You are Being Banned From You Router" :) Good try Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
Ibrahim Posted September 27, 2007 Author Share Posted September 27, 2007 as for binging www.autoitscript.com i shortened the script and forgot to delete that line as for being banned from your router "nice try" is good or bad!!!! [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
Ibrahim Posted September 27, 2007 Author Share Posted September 27, 2007 guys there is some data to change in ur script like ur Gateway Router Mac and IP Address .!!! [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
cdtoews Posted February 22, 2008 Share Posted February 22, 2008 I needed a function for getting a mac address from an ip address, I customized your script for my purposes. Here is the function I came up with #include <Constants.au3> Func _get_mac($hostname) local $foo, $bar If (Ping($hostname, 1000) > 0) Then $foo = Run("arp -a", @SystemDir, @SW_HIDE, $STDOUT_CHILD) Global $line = "" While 1 $line = $line & StdoutRead($foo) If @error Then ExitLoop Wend $result = StringRegExp($line, "(?i)((?:\d{1,3}\.){3}\d{1,3})\s+?((?:[0-9A-F]{2}-){5}[0-9A-F]{2})", 3) For $i = 0 to UBound($result) - 1 step 2 if $result[$i]=$hostname Then $bar = $result[$i+1] EndIf Next EndIf Return $bar EndFunc Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now