Sinisterly
Finding IP Address Through Skype - CMD - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials)
+--- Thread: Finding IP Address Through Skype - CMD (/Thread-Finding-IP-Address-Through-Skype-CMD)

Pages: 1 2


RE: Finding IP Address Through Skype - CMD - mr.good - 09-24-2012

Save as anything .php (for example, 'resolver.php') - then visit the page using 'filename.php?user=skype_name'

Code:
<?php $resolve = file_get_contents("http://www.google.com/resolver.php?user={$_GET['user']}"); $ip = (empty($resolve)) ? "error" : $resolve; echo $ip; ?>

Should work ^^


RE: Finding IP Address Through Skype - CMD - !CRYPTOGRAPHY! - 09-24-2012

I didn't know this method thanks for sharing I'll use this.


RE: Finding IP Address Through Skype - CMD - Dashing Dave - 09-24-2012

Tried but may be i did something wrong. That's y didn't work for me.


RE: Finding IP Address Through Skype - CMD - Badside416 - 09-29-2012

this seems slick, gonna try it out soon Smile