Advertisement
gigalouismdr

list.php [Tuto Nextwab] - 2

Jul 30th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1.   $internet = "http://google.fr";
  2.   $nextwabfr = "http://nextwab.fr";
  3.   $nextwabcom = "http://nextwab.fr";
  4.   $nextwabsql = "http://mysql.nextwab.com";
  5.   $nextwabftp = "http://ftp.nextwab.com";
  6.   $localhost = "localhost";
  7.   $portint  = "80";
  8.   $portftp  = "21";
  9.   $portsql  = "3306";
  10.   $portssl  = "443";
  11.   $timeout = "30";
  12.  
  13.   if ($internet and $portint and $timeout) {
  14.     $internet = @fsockopen("$internet", $portint, $errno, $errstr, $timeout);
  15.     $nextwabfr = @fsockopen("$nextwabfr", $portint, $errno, $errstr, $timeout);
  16.     $nextwabcom = @fsockopen("$nextwabcom", $portint, $errno, $errstr, $timeout);
  17.     $nextwabsql = @fsockopen("$nextwabsql", $portsql, $errno, $errstr, $timeout);
  18.     $localsql = @fsockopen("$localhost", $portsql, $errno, $errstr, $timeout);
  19.     $localftp = @fsockopen("$localhost", $portftp, $errno, $errstr, $timeout);
  20.     $nextwabftp = @fsockopen("$nextwabftp", $portftp, $errno, $errstr, $timeout);
  21.     $localssl = @fsockopen("$localhost", $portssl, $errno, $errstr, $timeout);
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement