How to Trace Any IP Address

Trace_IP

After you obtain this IP address, it is necessary to trace it back to the source. So, in this post I will show you how to trace any IP address back to its source.

How to Trace the IP Address Back to the Source?

In fact, tracing an IP address back to its location is a lot simpler than what many people imagine. There exists many online tools using which you can accomplish this job. One of my favorite site is IP2Location.com.
Just go to  http://www.ip2location.com/demo.aspx and enter the IP address that you want to trace in the dialog box and click on “Find Location”‘. With just a click of a button you can find the following information for any given IP address:
  • Country in which the IP is located
  • City to which the IP address belongs to
  • Latitude/Longitude of the IP’s location
  • Zip Code of the region to which the IP belongs to
  • Time Zone associated with the IP
  • Name of the ISP to which the IP address belong to
  • Internet Speed of the computer associated with the IP
  • Weather Station associated with the region of the IP
  • Domain name associated with the IP address
A sample snapshot of the results from ip2location.com is given below:
ip2location_results1
You can also visually trace route any IP address back to its location. For this, just visit http://www.yougetsignal.com/tools/visual-tracert/ and enter the IP you want to trace in the dialog box and hit the “Proxy Trace” button. Wait for few seconds and the visual trace route tool displays the path Internet packetstraverse to reach a specified destination. Hope this helps. Please pass your comments.
Read more

How To Create Your Own VPN

Don't buy a VPN, Instead Make your own



Don't waste your money on a VPN. They're expensive, slow and you don't know if they're truely not logging you. Just make your own. This takes less than 5 minutes to do and is very easy. I did this a few days ago and actually forgot it was on, the speeds are very close. Here's proof...



My Speed without a VPN


My Speed with a VPN


VPN Speed when I bought from a commercial VPN Provider : 


t's extremely simple to set up. First, buy a cheap vps from a data center. I have worked with a lot of data centers and found that you get what you pay for. Cheap hosts often put way too people on a single server and have low internet speeds. My VPS provider of choice is RamNode or Digital Ocean, however you can use whoever you want (but remember, less cost usually means less speeds). You need around 96mb ram (64mb ram won't cut it!) and 0.5GB disk space (as you need to install an OS as well) minimum, so keep that in mind if you buy a non-ramnode VPS. 

If you chose to go with Ramnode, the VPS you need is $16 per year with the coupon code IRC33, which is much lower than all VPN providers' ( All VPN Providers charge $5 [minimum] per month so, that totals to $60 Per Year, where as using Ramnode, You are spending $16 per year) . The VPS you want is either of the OpenVZ/SVZ servers. You can chose if you want a better processor and an SSD for 10GB storage space, or a lesser processor with SSD-cached storage for 50GB storage space. Either will result in the same speeds. Chose then one you want and chose "View Plans". Chose the location closest to you, then buy the 128MB CVZ-E5 option (it says $24 but that's before the IRC33 code, which gives 33% off recurring). Hit order now, and buy it like any other WHCMS system. When you're choosing the operating system, chose "Debian 7.0 32 bit" (not 64bit because that uses slightly more ram, and is useless unless you have more than 4GB ram) Once you pay, you'll get an email that looks like this:

Log into the Ramnode SolusVM control panel and chose your server. Click "Boot" if it's not online already, and scroll down to the bottom. Turn the "TUN/ATP" box to On, so it looks like this:


Your server may reboot.

Download PuTTY and put the IP address (in the email) in the host name, then "22" in the port. Log in with the username "root" and the password supplied in the email. 

Run the following commands in the order I put them here. Wait for the old command to end, obviously. You can right-click in putty to paste:
 wget http://swupdate.openvpn.org/as/openvpn-as-1.8.4-Ubuntu10.i386.debdpkg -i openvpn-as-1.8.4-Ubuntu10.i386.debpasswd openvpn (change the pass to whatever you want)

Go to [your ip]:943/admin and ignore the SSL warning. Login with the username "openvpn" and the password you entered in the previous command. Click agree. Turn the server on if it's not on yet.

Download and install the openvpn client. Put your IP in the host box, then the username and password you used in the admin page as the login. That's it, you're done!

The only downside to this is that you have 500GB bandwith per month before you're charged an extra $4 per 1TB bandwith you use. I've never run into this issue. 


Read more

How to steal SSL Encrypted Passwords on WiFi Using Backtrack 5 & Ettercap


I am simply teaching how Arp Spoof and Ettercap work.


What does ettercap do?

Well it does a lot of things but today we are going to show how a hacker can steal SSL encrypted passwords over wifi! SSL encrypted sites are like Gmail, Yahoo, Paypal etc! Anything with https:// in front of it. 

How does it do this you ask? Confused

It works by ARP Spoofing your Victims IP and when the site they visit tries to serve an SSL Cert ettercap injects it's own fake cert and captures the password! Brilliant! 

1. Let's get started!

 First scroll to your dolphin file browser. It is the little icon in the bottom that looks like a file cabnet.

Click on the root folder 

Then open the etc folder and scroll down until you find a file called "etter.conf"

scroll down until you see this:

#---------------
#     Linux
#---------------
# if you use ipchains:
   #redir_command_on = "ipchains -A input -i %iface -p tcp -s 0/0 -d 0/0 %port -j REDIRECT %rport"
   #redir_command_off = "ipchains -D input -i %iface -p tcp -s 0/0 -d 0/0 %port -j REDIRECT %rport"
# if you use iptables:
   redir_command_on = "iptables -t nat -A PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"
   redir_command_off = "iptables -t nat -D PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"

Now we need to remove 2 # symbols to allow the Redir command to work in iptables. Make yours looks like this:


Change this: 
# if you use iptables:
   #redir_command_on = "iptables -t nat -A PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"
   #redir_command_off = "iptables -t nat -D PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"

To This:
# if you use iptables:
   redir_command_on = "iptables -t nat -A PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"
   redir_command_off = "iptables -t nat -D PREROUTING -i %iface -p tcp --dport %port -j REDIRECT --to-port %rport"

Great now the two # symbols are deleted just close and save!

2. Let's Open Ettercap!

Click the backtrack logo on the bottom left -> backtrack tab -> privilege escalation -> protocol analysis-> network sniffers -> ettercap-gtk



3. Now click Sniff and select unified sniffing.





4. Select your Network interface. In my case it is wlan0 my wifi but yours may be diferent!




5. Now click the Host tab and Scan for hosts.




6. Now click the host tab and select the host list option.

7. Now it's time to select your targets from the host list! Select your router mine was 192.168.1.1 and add it to host 2.
Next select your victim mine was 192.168.1.6 and add it to host 1.




8. Next go to the Mitm tab and select arp poisoning and check the box for remote sniffing and click ok!




9. Click the Start button and then the Start Sniffing option.


NOTE THIS TUTORIAL IS FOR EDUCATIONAL PURPOSES ONLY!!!

Read more

Jailbreaking PS3
















►►►Read First◄◄◄ * WATCH IN 1080p* !

Hey guys and welcome to my new video. Today i want to show you how to jailbreak your Sony playstation 3 ( PS3 ) . This does not work on the Playstation 4 ( PS4 ) . 

Currently there is no Jailbreak for the PS4 , and only PS3´s with a OFW of 3.55 or below are jailbreakable.

Also the new super slim is currently NOT jailbreakable.

Download Links:

CFW & OFW :

http://www.tortuga-cove.com/forums/vi...

CFW comparison :

http://www.ps3hax.net/showthread.php?...
http://www.ps3hax.net/showthread.php?...
http://www.ps3hax.net/forumdisplay.ph...

PS3 hacking guide :

http://www.youtube.com/watch?v=by0QGE...

Written Tutorial :

Q: What can a jailbroken Playstation 3 system do?
A: When a PS3 is jailbroken, it allows the use of installing package files, which can range from Emulators or programs that allow you to install free games from a black market marketplace. You can also mod games such as Call of Duty , download free movies with the removal of Cinavia, which disallowed the downloading of movies onto the system after 3.10 , and run FTP clients, and much more!

Q: Can I jailbreak 4.50?
A: You can in a sense. You must downgrade first, and in order to downgrade you must have had a console on 3.55 at one time. Super slims cannot be jailbroken.
Q: I have the E3 Installed an downgraded, what's the next step to get online?
A: To get online you use a spoof, which in retrospect, makes your system think it's on the current version, but isn't.

One common question I find on here time and again is "Can I jailbreak my PS3?" The answer is simple. You MUST be on version 3.55, and you MUST have 2 PS3 consoles, just to make this easier on yourself. Some PS3 slim models will not be able to be downgraded, so please refer to the Next Steps part, and check the compatibility there. To check your current version, on the XMB Main screen navigate to Settings-System Settings-System Info. The "System Version" is where your current version will be. Consoles that have not at one time been on 3.55 cannot be jailbroken either. So, if you bought a PS3 from Walmart and it came out of the box on 3.60, your out of luck. You may also check the requirements here.

The USB Step:

In order to jailbreak, download the CFW, and plug in your USB flash drive. In your flash drive, right-click and format your flash drive to FAT32. Once that is done, go into your USB, and create a new folder. Name this folder "PS3" without the quotations. Inside the PS3 folder, create a folder called "Update" without the quotations. In this folder, you should place the PS3UPDATE.PUP, which is found in the download for the Kmeaw 3.55 download. You can now safely eject your USB, and plug it into your PS3.

Source: 

http://www.se7ensins.com/forums/threa...

●▬▬▬▬▬▬▬▬▬▬▬▬▬●

Just follow the steps shown in the Video :- )
Read more

How to add a Professional eRose Author Bio Widget

Many Bloggers wants the new and fresh widgets of blogger and most of the saying we want new author bio widget which includes the all aspects of blogging like Social Media as Facebook, Twitter, Youtube etc. so keep it in mind, in this widget you will get Donation Button, Be a Blogger Button and much when you use this widget.

Add eRose Author Bio Widget in Blogger


  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Press Ctrl + F and search the code shown below.



]]></b:skin>




  • Paste below code just above it.

.clear {
clear:both;
}

#author-box {
margin:10px 0;
}

#author-box a:hover {
background:none!important;
}

#author-box .row-1 {
background:#333;
padding:20px;
}

#author-box .row-1 .avatar {
float:left;
line-height:1;
-moz-box-shadow:0 0 10px #FFF;
-webkit-box-shadow:0 0 10px #FFF;
box-shadow:0 0 10px #FFF;
}

#author-box .row-1 .info {
margin:0 0 0 110px;
}

#author-box .row-1 .info h6 {
color:#FFF;
font-size:20px;
margin:-4px 0 0;
}

#author-box .row-1 .info h6 span {
font-size:11px;
font-weight:400;
background:#1BA1E2;
-webkit-border-radius:40px;
-moz-border-radius:40px;
border-radius:40px;
filter:alpha(opacity=60);
opacity:0.6;
margin:0 0 0 1em;
padding:1px 9px 2px;
}

#author-box .row-1 .info p {
color:#DDD;
font-weight:400;
font-size:14px;
margin:0;
}

#author-box .row-2 {
background:#666;
}

#author-box .row-2 a.social-item {
display:block;
float:left;
color:#FFF;
text-align:center;
padding:15px;
}

#author-box .row-2 .social-item .icon {
height:32px;
width:32px;
}

#author-box .row-2 .social-item > span {
display:block;
text-align:center;
margin:auto;
}

#author-box .row-2 .social-item .label {
font-weight:700;
font-size:13px;
}

#author-box .row-2 .social-item .click {
font-size:11px;
color:#EAEAEA;
line-height:1;
}

#author-box .row-2 a.social-item:hover {
background:#1BA1E2!important;
}

#author-box .row-3 {
background:#1BA1E2;
}

#author-box .row-3 form,#author-box .row-3 a.donation-button {
display:block;
float:left;
}

#author-box .row-3 .donation-button {
background:#1BA1E2;
border:none;
font-family:Impact;
font-size:30px;
color:#FFF;
line-height:1.2em;
margin:0;
padding:10px;
}

#author-box .row-3 .donation-button:hover {
background:#000;
cursor:pointer;
}

#author-box .row-3 .register-button {
display:block;
color:#FFF;
border:none;
font-family:Impact;
font-size:30px;
text-align:right;
line-height:1.2em;
margin:0;
padding:10px;
}

#author-box .row-3 .register-button:hover {
color:#000;
cursor:pointer;
}

#author-box .row-2 .social-item.twitter .icon {
background-position:0 -32px;
}

#author-box .row-2 .social-item.facebook .icon {
background-position:0 -64px;
}

#author-box .row-2 .social-item.gplus .icon {
background-position:0 -96px;
}

#author-box .row-2 .social-item.linkedin .icon {
background-position:0 -128px;
}

#author-box .row-2 .social-item.youtube .icon {
background-position:0 -160px;
}

#author-box .row-2 .social-item.pinterest .icon {
background-position:0 -192px;
}

#author-box .social-item .icon {
background-image:url(https://lh5.googleusercontent.com/--PQVoN23nrI/UYHHvhtNSxI/AAAAAAAAJPA/5weO87qvER4/s224/ausocial.png)!important;
background-repeat:no-repeat;
}

 
  • Now Search for below code once again

<div class='post-footer-line post-footer-line-1'>


  • Paste below code just after it.

<div id='author-box'>
            <div class='row row-1'>
                <div class='avatar'>
                    <a href='http://www.widgetgenerators.com/2012/09/about-author.html'><img alt='author-avatar' class='avatar avatar-90 photo' height='90' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaThYpONu-hpa1K347w7uG1GoQ7azjO8omPg56jgH-wjYkGtEHYBZNFCOEoqGREaz-AzyumUDI5qsjGizZAIQHdQXomoY2jeKR3FunqBZIZyThriRgTd_sq_QBIjIhRwupNGzoXvWovyUQ/s1600/Capture.PNG' width='90'/></a>
                </div>
                <div class='info'>
  <h6>Posted By: Hemant Verma <span>Admin and Author</span></h6>
    <p><strong><a href='http://www.widgetgenerators.com/2012/09/about-author.html'>Hemant Verma </a> is the founder of Widget Generators.</strong> <strong>Graduate in Computer Applications in 2012,  Love to Make Blogger Hacks and Like to Play with HTML and a Business Man.</strong></p>
                </div>
                <div class='clear'/>
            </div>
            <div class='row row-2'>
                <a class='social-item website' href='http://www.widgetgenerators.com' meta='website' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>Website</span>
                  <span class='click'><span class='val'>113576 Visitors</span> </span>
                </a>
          
                <a class='social-item twitter' href='https://twitter.com/Widgetgenerator' meta='twitter' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>Twitter</span>
                    <span class='click'><span class='val'>200 Followers</span></span>
                </a>
          
                <a class='social-item facebook' href='http://www.facebook.com/Widgetgenerators' meta='face' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>Facebook</span>
                    <span class='click'><span class='val'>500 Likes</span></span>
                </a>
          
                <a class='social-item gplus' href='https://plus.google.com/101961392825834817673' meta='gplus' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>Google+</span>
                    <span class='click'><span class='val'>70 Joined</span></span>
                </a>
          
                <a class='social-item linkedin' href='http://ph.linkedin.com/Widgetgenerators' meta='linkedin' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>LinkedIn</span>
                    <span class='click'><span class='val'>40 Links</span></span>
                </a>
          
                <a class='social-item youtube' href='https://www.youtube.com/user/Widgetgenerators' meta='youtube' target='_blank'>
                    <span class='icon'/>
                    <span class='label'>Youtube</span>
                    <span class='click'><span class='val'>30 Followers</span></span>
                </a>
          
              
            <div class='clear'/></div>
            <div class='row row-3'>
            <form action='https://www.paypal.com/cgi-bin/webscr' class='author-donation' method='post'>
                <input name='cmd' type='hidden' value='_donations'/>
                <input name='business' type='hidden' value='vhemant03@gmail.com'/>
                <input name='lc' type='hidden' value='US'/>
                <input name='item_name' type='hidden' value='Donate Blogger'/>
                <input name='no_note' type='hidden' value='0'/>
                <input name='currency_code' type='hidden' value='USD'/>
                <input class='donation-button' name='submit' type='submit' value='+Donate to Author'/>
            </form><a class='register-button' href='http://blogger.com/'>Become a Blogger</a><div class='clear'/></div>
    </div>

  • Finally Save your Template.
  • You are done


Make Changes....!

  • Replace this http://www.widgetgenerators.com/2012/09/about-author.html with your author bio page link (Optional)
  • Replace this https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaThYpONu-hpa1K347w7uG1GoQ7azjO8omPg56jgH-wjYkGtEHYBZNFCOEoqGREaz-AzyumUDI5qsjGizZAIQHdQXomoY2jeKR3FunqBZIZyThriRgTd_sq_QBIjIhRwupNGzoXvWovyUQ/s1600/Capture.PNG with your author image.
  • Replace this Hemant Verma with your Author OR Admin name.
  • Replace this Hemant Verma  with your author bio.
  • Replace this www.widgetgenerators.com with your website link.
  • Replace this Widgetgenerator with your twitter username.
  • Replace this Widgetgenerators with your Facebook username.
  • Replace this 101961392825834817673 with your Google Plus id
  • Replace this Widgetgenerators with your linked in profile id.
  • Replace this Widgetgenerators with youtube username.
  • Replace this vhemant03@gmail.com with your email id on Paypal account
If any problem comes please don't forget to comment.
 
 

 
Read more

Pages