hobbit monitor
Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 54

Thread: IP Stealer - Get Any IP

Hybrid View

  1. #1
    Join Date
    Jan 2005
    Posts
    623

    IP Stealer - Get Any IP

    I have finally made the decision to open an IP Stealer/Collector to anyone who signs up an account. It will store date,time,ip entries in a database for viewing. I made it as simple as possible, but have come to the unfortunate realization that nothing is idiot proof.

    *. Sign up an account at Syntax******.info
    2. IP Tool is here: [url]http://www.syntax******.info/tools/ip.php[/url]
    *. An automatic link is generated based on your account.
    I would recommend going to TinyUrl.com and generating a tiny url. My accounts tinyurl is [url]http://tinyurl.com/ypf6cj[/url] . I will write my own tinyurl functions soon
    4. Get someone to follow the link and the date, time, & IP will show up in your account.
    5. You have the option of forwarding a visitor to the URL of your choosing after you collect their IP. The default is set to Google.com so it would be wise to change it.

    Enjoy && (!(Abuse))

    ~SyntaX
    [url=http://www.syntax******.info/tools/services.php]Speed Up Windows XP[/url]
    [url=http://www.syntax******.info/tools/ip.php]Get An Ip Address[/url]
    [url=http://www.syntax******.info/tools/base_converter.php]Base Converter[/url]
    --------------------------------
    [URL=http://www.boninroad.com/syntax******/]Old Site[/URL]
    [URL=http://www.syntax******.info]Comming Soon[/URL]

  2. #2
    Join Date
    Sep 2006
    Posts
    1,649
    This should make all the "How doze I gets an IP????" threads go away

  3. #3
    Join Date
    Jan 2005
    Posts
    623
    That was the main reason I created this tool. My IP Emailer on boninroad.com got taken advantage of. Visitors were actually sending around 5000 ip emails a day. This tool should limit potential spam abuse.

    I'm looking for a test linux server running apache to test Mod Rewrite so that I can create my own Tiny URL scheme. So if you know where I can test some Rewrites out please let me know! I want to take tinyurl to the next level allowing each user to create custom URLs:
    [url]http://www.domain.com/VARIABLE*/VARIABLE2/[/url]
    [url=http://www.syntax******.info/tools/services.php]Speed Up Windows XP[/url]
    [url=http://www.syntax******.info/tools/ip.php]Get An Ip Address[/url]
    [url=http://www.syntax******.info/tools/base_converter.php]Base Converter[/url]
    --------------------------------
    [URL=http://www.boninroad.com/syntax******/]Old Site[/URL]
    [URL=http://www.syntax******.info]Comming Soon[/URL]

  4. #4
    Join Date
    Sep 2005
    Posts
    2,050
    You know this will be abused to hell. There are just too many people that want to get their enemies' IP addresses so they can hack into their hard drives and delete C:\.

    Then there'll be the idiots who automate it to scrape IP addresses from the net.

    Quote Originally Posted by SyntaX****** View Post
    I'm looking for a test linux server running apache to test Mod Rewrite so that I can create my own Tiny URL scheme. So if you know where I can test some Rewrites out please let me know! I want to take tinyurl to the next level allowing each user to create custom URLs:
    [url]http://www.domain.com/VARIABLE*/VARIABLE2/[/url]
    My site runs on Apache; probably with mod_rewrite.

    I just checked, and it supports this.

    It's vhosted though with a ton of other sites, since I don't own the server. I pay for hosting.

    Also, I only have one FTP login...

    Perhaps if you PM me I can sort something out. Wouldn't it be easier though to run an Apache on your own machine for this sort of thing? I run it on my box and I think I have a DynDNS address for it, but I'd never give that out since it'd expose my identity, and port 80 appears invisible to anyone but me on my network. Can't have anyone on my LAN stumbling upon my web server...

  5. #5
    Join Date
    Jan 2005
    Posts
    623
    Now that you say that, what would be an appropriate time limit between IP Addresses collected? I will add this into my code add make it to where (x) amount of time needs to pass before another IP will be collected. Not sure if you noticed when you registered, but if you try to register another account you will not be able to. You are blocked from another registration for at least *0 minutes. It limits registration to * ip every *0 minutes. I figured this would cut down if not eliminate potential bots.

    I have time stored in this format:

    year month day hours minutes seconds
    2007082**04*50

    This makes it easy to check time between actions.
    [url=http://www.syntax******.info/tools/services.php]Speed Up Windows XP[/url]
    [url=http://www.syntax******.info/tools/ip.php]Get An Ip Address[/url]
    [url=http://www.syntax******.info/tools/base_converter.php]Base Converter[/url]
    --------------------------------
    [URL=http://www.boninroad.com/syntax******/]Old Site[/URL]
    [URL=http://www.syntax******.info]Comming Soon[/URL]

  6. #6
    Join Date
    Sep 2005
    Posts
    2,050
    Thirty minutes would probably be appropriate to prevent most abuse, yes.

    I have time stored in this format:

    year month day hours minutes seconds
    2007082**04*50

    This makes it easy to check time between actions.
    On my site, I store time in exactly the raw output of the time() function in PHP. It gives you the timestamp since the UNIX epoch (**70); that is, seconds since then (as an integer). I think it's stored as an integer on the database too.

    Specifically, INT(**), for SQL nerds.

    In your case, using this method you could enforce the *0 minutes limit by comparing the timestamps of IP requests, and only allowing those with a difference of *800 (that's *0 minutes in seconds). Everything is done in seconds.

    When you have the raw timestamp, you can feed it into the date() function to display the date/time of whatever action in any way you desire (date() has a second parameter for the timestamp, otherwise it uses the current time's timestamp).

    I've found that this is a lot easier to work with, and I recommend it. It's like working with user IDs instead of usernames (which I do ). It's a lot quicker on the database and PHP engine, and can be transformed for pretty much any purpose.

  7. #7
    Join Date
    Oct 2007
    Posts
    2
    hi I am new here im from greece. i want an ip stealer program to monitor my contacts at msn. My contacts aren't connected to my local network. can i monitoring them on msn?

  8. #8
    Join Date
    Sep 2007
    Posts
    8

    What Is The Ip Then?

    How Come When I Go To Nwebsites And Do Ip Search For My Own Ip It Shows 2 Different Ips? Sonmetime It Shows The One I See As My Ip An Sometimes Another One Is Shown!

  9. #9
    Join Date
    Sep 2007
    Posts
    8
    also it shows a 4 hours delay on the time, but thats not much important! the IP shown is really the PC IP or is it the server IP?

  10. #10
    Join Date
    Sep 2007
    Posts
    8
    What If The Person Is Smart? Copy And Paste The Link And Delete Some Pasrts?? He Will Get To The Original Syntax Website! Ive Tried That!

  11. #11
    Join Date
    Jun 2006
    Posts
    459
    Quote Originally Posted by johnnyluckystar View Post
    What If The Person Is Smart? Copy And Paste The Link And Delete Some Pasrts?? He Will Get To The Original Syntax Website! Ive Tried That!
    What if you are dumb?
    7h* L**7*57 c4n7 h4ck m*!
    Proud to have quit playing ®µÑȧ©ÅÞË

    If you write like a semi-literate boob you will very likely be ignored.
    Writing like a l**t script kiddie hax0r is the absolute l**t*st way to write!
    L0L

  12. #12
    Join Date
    Sep 2006
    Posts
    1,649
    Quote Originally Posted by johnnyluckystar View Post
    What If The Person Is Smart? Copy And Paste The Link And Delete Some Pasrts?? He Will Get To The Original Syntax Website! Ive Tried That!
    Wow.. What's he gonna do when he gets to SyntaX's main page? Hack it?

    And if that's the case, sucks for you that your target is a little smarter than the average computer user.
    "Workers of the world unite; you have nothing to lose but your chains." -Karl Marx

  13. #13
    Join Date
    Mar 2008
    Posts
    1
    syntax ****** i didnt get an email to confirm my registration from ur site

  14. #14
    Join Date
    Jan 2005
    Posts
    623
    Whats your username and email address? I'll manually activate the account.

    Out of over 2000 sign-ups these are the email domains with the highest amount of unvalidated accounts:

    [**********] => *2*
    [hotmail.com] => *24
    [**********] => 40
    [aol.com] => 2*
    [hotmail.co.uk] => **

    Here is the list of the top domains that have been validated:
    [**********] => 464
    [hotmail.com] => *85
    [**********] => 257
    [aol.com] => **
    [hotmail.co.uk] => 50
    Last edited by SyntaXmasteR; 03-10-2008 at 02:49 PM.
    [url=http://www.syntax******.info/tools/services.php]Speed Up Windows XP[/url]
    [url=http://www.syntax******.info/tools/ip.php]Get An Ip Address[/url]
    [url=http://www.syntax******.info/tools/base_converter.php]Base Converter[/url]
    --------------------------------
    [URL=http://www.boninroad.com/syntax******/]Old Site[/URL]
    [URL=http://www.syntax******.info]Comming Soon[/URL]

  15. #15
    Join Date
    Apr 2008
    Posts
    1
    i loved it. and i suck at computers.
    but this is a really nice tool to find ip's.
    i found mine in seconds.

    thanks syntax.

    SO.. I'M using this to get the ip from a friend of mine. And i was searching for a tool to find his IP. He says he's away, my old PC it's at his house and i wanna prove him that he lies too much. And i thought it was possible to find it from Ymessenger. But this works only if it clicks the link. There is an invisible buddy checker for yahoo.. and it still works.. called buddy checker. And as i heard . it works on p2p. Doesnt it make it possible to somehow use that to find his IP? the checker is here: [url]http://www.nuotex.com/buddycheck/[/url] . And i'm thinking that it just might be somehow possible to 'do something.. tweak it' for getting an ip from him.
    I just wanna... mess with him a little.
    If anything like this is possible or any other way without making him click links, or send me emails... I would greatly appreaciate it.

    and yeah.. i can use a pc.. but the how all works.. me bry not knowing that.. i'm a freaking lawyer/ hr consuntant. But.. is i got this right away.. I know I could learn more.
    So please a little help from my new friends here.
    Last edited by kapnobatai; 04-05-2008 at 07:32 PM.

Closed Thread

Similar Threads

  1. IP stealer?
    By cubsfan099 in forum Internet Privacy
    Replies: 1
    Last Post: 09-28-2009, 10:45 PM
  2. Password Stealer
    By sneekyasn in forum Internet Privacy
    Replies: 2
    Last Post: 04-08-2008, 06:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts