Jump to content

zin0

Active Members
  • Posts

    134
  • Joined

  • Last visited

Everything posted by zin0

  1. zin0

    uk cash

    schimb cod uk cash in valoare de 30 GBP pe 48 usd in perfect money, pm sau post aici cine este interesat.
  2. si eu am mailuri de italia , si exact ce va trebuie voua , le dau pe altceva la scimb, PM
  3. te-ai gasit tu "priceputule" sa dai reply dupa 1 luna ai dreptate , plin forumul de priceputi
  4. am gasit sciptu pe un forum , precizez ca nu e scris de mine , doar copy/paste <?php /* * Author: Xt3mP * Name: Dorks link grabber * Version: 1.0 Bing * Contact: xt3mp[at]null[dot]net * Website: [url]http://xt3mp.mx[/url] | [url]http://backroot.org[/url] */ ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Dorks links Grabber (Bing version) | Xt3mP</title> <style type="text/css">body{background-color:#2b2b2b;color:#777;font-family:Courier,"Courier New",monospace,sans-serif;font-size:12px}div#container{height:auto;margin:0 auto;width:600px}fieldset{background-color:#222;border:1px dashed #777;float:left;margin:5px;padding:5px;width:100%}legend{background-color:#555;border:1px dashed #777;color:#FFF;font-weight:700;margin:5px;padding:5px}label{float:left;margin-right:5px;padding-top:5px;text-align:right;width:100px}input,select{background-color:#E7E7E7;border:1px dashed #777;float:left;font-family:Courier,"Courier New",monospace,sans-serif;font-size:12px;margin-bottom:5px;padding:3px;width:490px}input[type=submit]{width:600px}h1{margin:0;padding:0}a{color:#CCC;font-weight:700}a:hover{color:#FFF;text-decoration:underline}</style> </head> <body> <?php set_time_limit(0); class dorkGrabber { private $bing; private $checkfile; public function __construct() { $this->bing = 'http://www.bing.com/search?q='; } private function getSource($target) { $target = @file_get_contents($target); return $target; } private function remakeUrl($url) { $url = explode("/", $url); for($z = 0; $z < count($url) - 1; $z++) { $new .= $url[$z].'/'; } return $new; } private function checkUrl($url) { if(@fopen($this->remakeUrl($url).$this->checkfile, 'r')) return true; else return false; } private function parseLinks($target) { $data['rawlinks'] = array(); $data['correctlinks'] = array(); $data['badlinks'] = array(); for($i = 0; $i < 21; $i++) { $first = ($i == 0) ? 0 : ($i * 10) + 1; $source = $this->getSource($target.'&first='.$first); $pattern = "/<h3><a href=\"(.*?)\" onmousedown=/"; $preg = preg_match_all($pattern, $source, $output, PREG_PATTERN_ORDER); if(count($output[1]) != 0) { for($x = 0; $x<count($output[1]); $x++) { if(!in_array($this->remakeUrl($output[1][$x]), $data['correctlinks'])) { if($this->checkUrl($output[1][$x])) { $data['rawlinks'][] = $output[1][$x]; $data['correctlinks'][] = $this->remakeUrl($output[1][$x]); }else{ $data['rawlinks'][] = $output[1][$x]; $data['badlinks'][] = $output[1][$x]; } } } }else{ break; } } return $data; } private function getLinks($target) { $newTarget = $this->getSource($target); $check = "/<h1>No se han encontrado resultados para <strong>/"; if(@preg_match($check, $newTarget)) return false; else return $this->parseLinks($target); } private function makeData($type, $links, $output = null) { switch($type) { case 'raw': $title = '<h1>Raw links</h1>'; foreach($links['rawlinks'] as $link) { $linkdir .= $link."\r\n"; } $data = $title.'<textarea rows="5" style="width: 600px; font-size: 11px;">'.$linkdir.'</textarea>'; break; case 'correct': $title = '<h1>Correct links</h1>'; foreach($links['correctlinks'] as $link) { $linkdir .= $link."$this->checkfile\r\n"; } $data = $title.'<textarea rows="5" style="width: 600px; font-size: 11px;">'.$linkdir.'</textarea>'; break; case 'bad': $title = '<h1>Bad links</h1>'; if(empty($links['badlinks'])) { $data = $title.'<textarea rows="5" style="width: 600px; font-size: 11px;">None</textarea>'; }else{ foreach($links['badlinks'] as $link) { $linkdir .= $link."\r\n"; } $data = $title.'<textarea rows="5" style="width: 600px; font-size: 11px;">'.$linkdir.'</textarea>'; } break; case 'txt': $title = '<h1>Output file</h1>'; foreach($links['correctlinks'] as $link) { $linkdir .= $link.$this->checkfile; } $tot = count($links['correctlinks']) + count($links['badlinks']); $statistics = ' [Total links: <b>'.$tot.'</b>] [Correct links: <b>'.count($links['correctlinks']).'</b>] [Bad links: <b>'.count($links['badlinks']).'</b>]'; $file = fopen($output, 'w+'); if($file) { fwrite($file, $linkdir); fclose($file); $filedir = $output.' > http:/'.dirname($_SERVER["PHP_SELF"]).'/'.$output; $data = $title.'<textarea rows="5" style="width:600px;font-size:11px;margin-bottom:5px;">'.$filedir.'</textarea>'; $data .= $statistics.' <a href="./'.$output.'" target="_blank">[View output file]</a>'; }else{ $data = $title.$statistics.' [Can\'t make output file]'; } break; } return $data; } public function makeDirective($dork, $output, $checkfile = null) { $dork = urlencode($dork); $target = $this->bing.$dork; $this->checkfile = $checkfile; $grabber = $this->getLinks($target); $result = '<fieldset style="text-align: justify"><legend>Result</legend>'; if($grabber === false) { $result .= 'The DORK (<b>'.urldecode($dork).'</b>) doesn\'t return any results.'; }else{ $result .= $this->makeData('raw', $grabber); $result .= $this->makeData('correct', $grabber); $result .= $this->makeData('bad', $grabber); $result .= $this->makeData('txt', $grabber, $output); } $result .= '</fieldset>'; return $result; } } ?> <div id="container"> <fieldset> <legend>Dorks links Grabber (Bing version) | <a href="http://xt3mp.mx" target="_blank">Xt3mP</a></legend> <form action="" method="POST"> <label>Insert DORK:</label><input type="text" name="dork"/><br /> <label>Search eng.:</label><input type="text" name="engine" value="Bing" disabled="disabled"><br /> <label>Output file:</label><input type="text" name="output" /><br /> <label>Check file:</label><input type="text" name="check"/><br /> <input type="submit" name="get" value="Get Links!" /> </form> </fieldset> <?php if(isset($_POST['get'])) { if(empty($_POST['dork']) or empty($_POST['output'])) { echo '<script>alert("Some fields are empty!.");</script>'; }else{ $mtime = microtime(); $mtime = explode(' ',$mtime); $mtime = $mtime[1] + $mtime[0]; $starttime = $mtime; $dorkGrabber = new dorkGrabber(); echo $dorkGrabber->makeDirective($_POST['dork'], $_POST['output'], $_POST['check']); $mtime = microtime(); $mtime = explode(' ',$mtime); $mtime = $mtime[1] + $mtime[0]; $endtime = $mtime; $totaltime = ($endtime - $starttime); echo 'This page took '.round($totaltime).' seconds to load.'; } } ?> </div> </body> </html>
  5. cumpar php shell doar *.unix PM back , platesc prin perfectmoney instant
  6. care are bunavointa sa il posteze gata facut pt 32 si 64,
  7. e vechi rau ce vrei sa vinzi tu acolo , si nu mai prinzi aproape nimik , nu cumparati este de kkt o sa il pun eu azi cand am timp, undeva sus sa il luati
  8. tudor, programul tau este ceva gen bag un d0rk si imi gaseste siteurile pe google, apoi pot sa le salvez? scuze daca sctiu prostii nu prea stiu, eu caut un script sau un program care sa faca ce am zis eu, adica sa bag d0rk => search daca imi gaseste 20 mii de siteuri sa am optiunea sa le salvez intr-un .txt ... exista asa ceva?
  9. zin0

    ofer SIP admin

    cum spune si titlu sunt resseler la o firma si ofer SIP admin free cine este interesat PM sau yahoo id : icemerc
  10. pai e explicat acolo... faci exact cum zice acolo, adica nano mail si pui linia aia acolo

  11. am nevoie de un keylogger ascuns sub un bilet de avion sau orice fel de document care sa fie 100% nedectetabil la antivirusi cine ma poate ajuta PM back sau aici , platesc bani frumosi
  12. 84.3.196.105 200.71.14.68 82.80.57.174 129.94.245.138 131.172.234.131 95.226.123.17 184.10.249.218 24.99.68.94 206.54.81.72 128.218.14.122 193.239.247.54 68.37.46.14 50.30.108.156 173.252.199.162 37.206.20.141 76.175.243.181 145.253.121.2 118.145.20.25 200.17.208.87 134.117.203.174 153.176.101.199 193.179.213.77 199.8.89.23 128.233.172.98 139.78.32.143 128.91.198.23 221.123.151.2 160.36.96.171 58.111.192.94 108.162.112.211 68.54.74.173 200.17.194.182 200.17.247.117 131.172.208.48 129.7.28.58 129.105.57.227 138.37.119.124 65.74.0.148 129.119.21.18 76.187.114.209 59.148.226.194 200.17.247.123 194.81.253.201 92.68.212.46 74.7.44.66 219.232.254.27 217.91.156.45 65.74.139.228 200.17.242.32 78.227.24.35 68.84.49.109 129.25.8.200 96.239.174.94 218.38.12.57 160.36.109.72 65.15.119.83 200.17.237.95 130.208.117.52 58.162.131.133 200.236.16.98 68.228.26.244 68.222.246.28 190.252.19.35 204.52.43.3 207.74.20.11 177.55.246.2 131.172.232.212 190.18.3.3 194.251.177.254 88.253.172.108 129.94.60.78 200.17.205.219 130.83.234.238 24.184.30.166 206.54.81.69 200.17.237.228 188.65.97.57 134.68.96.10 68.230.47.185 128.143.65.136 122.216.83.243 174.89.63.212 174.119.132.183 119.226.251.3 76.176.190.70 177.207.242.226 68.197.163.110 128.91.198.18 200.17.248.116 200.71.13.76 49.236.207.152 69.4.217.130 130.111.107.103 207.173.230.140 149.144.176.213 131.172.234.119 84.81.38.56 129.93.116.120 130.83.234.235 134.121.129.231 188.203.52.251 129.24.1.12 120.202.19.4 71.224.195.49 129.93.10.58 79.135.20.248 211.110.210.209 202.164.193.75 131.172.233.27 189.193.233.204 81.24.32.27 65.183.176.154 58.26.233.171 173.26.194.160 76.187.127.103 95.31.28.212 71.239.89.18 77.74.227.182 58.111.135.166 67.184.48.235 76.25.175.189 38.64.79.90 134.117.235.57 211.110.210.207 67.176.101.157 208.123.164.238 61.111.2.95 129.215.79.215 80.13.197.252 81.14.181.215 149.144.97.162 2.115.88.158 106.3.72.3 209.131.248.30 67.222.99.205 24.191.41.232 203.241.250.193 142.150.213.158 160.36.45.133 160.36.161.168 160.36.28.136 66.110.118.142 67.163.23.166 23.25.113.17 90.177.109.182 149.144.47.18 128.39.156.23 74.82.165.129 200.17.199.170 129.25.8.205 211.110.210.205 130.74.47.239 79.38.67.142 131.172.234.100 186.202.182.5 12.208.7.200 74.102.36.173 138.37.13.241 95.130.136.11 144.162.74.153 50.134.178.27 5.29.189.134 139.78.32.105 58.215.139.231 160.36.33.133 200.17.195.127 24.173.65.197 93.108.250.122 114.80.70.148 205.237.231.120 46.4.143.33 149.171.46.136 216.220.89.56 131.172.234.92 24.187.102.232 218.89.129.221 2.139.205.252 200.236.18.4 90.145.44.75 75.158.240.32 130.239.83.159 38.91.102.26 149.144.244.81 68.188.24.155 190.202.215.66 193.232.109.11 212.143.124.203 46.140.70.130 69.77.141.207 164.67.52.181 141.114.176.62 46.4.14.2 74.82.167.65 129.219.89.198 78.46.27.161 129.194.22.47 147.134.45.250 95.252.197.154 23.31.234.101 174.57.68.195 38.96.24.74 200.236.18.59 77.61.198.60 209.159.240.85 134.121.244.10 204.15.185.26 209.147.172.243 211.110.210.200 58.157.37.126 107.222.94.60 129.93.116.75 128.91.198.38 76.109.194.59 64.203.102.124 95.224.136.89 12.205.51.125 200.236.26.51 80.182.122.153 131.172.234.96 68.43.20.53 71.229.180.87 200.17.197.246 71.83.114.224 24.120.101.126 82.230.33.39 130.208.117.51 98.164.244.5 96.50.254.116 71.201.16.54 128.233.161.218 78.47.190.201 70.70.146.37 68.188.24.156 24.149.123.8 128.174.24.179 129.196.240.18 200.17.193.207 70.131.96.5 98.65.225.204 24.45.80.242 71.225.69.107 130.111.22.18 82.105.243.188 129.93.160.40 208.21.28.158 206.54.81.79 108.9.218.182 188.65.183.225 50.115.132.1 129.215.163.240 67.237.101.3 131.172.223.148 141.225.184.210 112.172.203.147 38.110.215.41 80.32.174.58 211.110.210.216 71.40.23.134 152.8.72.17 81.166.61.244 217.35.107.242 80.18.233.218 66.74.81.19 68.61.145.150 129.93.116.72 85.105.124.143 94.70.241.206 96.10.188.45 173.252.193.210 173.219.102.38 12.46.47.5 200.236.23.125 70.225.9.190 41.160.220.218 72.128.26.163 200.17.211.250 173.212.209.99 24.187.253.147 134.84.110.131 187.61.61.38 200.17.235.74 68.213.180.173 160.36.34.210 149.144.176.204 76.189.251.97 68.231.21.94 109.175.10.69 62.132.222.92 129.25.8.202 173.252.209.177 149.144.97.200 120.126.145.107 204.185.53.13 200.17.195.152 101.140.173.118 217.166.83.215 149.144.97.143 173.63.209.187 128.39.197.163 176.9.144.4 98.102.119.24 129.196.240.12 202.231.80.151 213.135.245.152 149.171.94.219 200.17.205.225 174.84.247.91 81.214.131.128 128.91.211.186 149.144.176.48 209.234.131.15 118.142.44.108 211.115.10.232 149.171.195.22 128.233.17.68 66.156.106.227 24.89.165.211 208.72.46.13 129.196.240.14 134.60.108.129 160.36.36.118 95.240.109.153 87.29.252.131 216.146.246.232 81.137.119.146 131.172.234.75 200.17.254.243 99.242.54.175 129.119.21.76 62.176.152.51 69.169.144.248 200.17.230.224 200.17.248.199 219.121.6.61 144.118.186.156 200.17.195.23 128.143.64.112 24.89.165.99 130.74.76.227 212.170.210.95 202.65.43.119 129.25.8.211 149.144.97.191 200.236.18.60 211.110.210.197 109.160.143.149 178.63.22.13 2.112.93.28 24.253.48.115 160.36.153.75 200.32.114.5 174.102.13.80 88.247.173.133 132.177.199.162 206.54.81.77 129.93.64.221 164.67.44.52 71.201.99.96 190.202.248.122 65.168.153.150 128.6.17.243 12.22.138.17 212.69.41.1 217.133.199.190 149.144.97.187 50.129.136.48 94.142.246.174 123.141.195.59 142.36.23.91 12.18.110.212 24.248.13.37 24.107.205.121 68.4.33.47 200.17.208.206 76.94.71.250 208.181.116.11 129.93.68.223 95.228.6.156 68.54.76.72 50.53.130.156 200.17.200.120 72.8.182.114 222.239.78.87 194.67.23.254 130.18.200.38 81.208.36.45 200.17.195.37 38.110.203.240 216.248.225.151 134.117.99.222 129.93.116.221 184.105.154.35 149.144.176.52 205.237.231.131 128.91.214.139 130.111.110.14 46.4.20.7 162.207.175.218 129.24.1.11 188.228.164.213 66.91.182.252 123.124.244.157 201.90.250.108 128.39.196.52 97.79.198.198 5.226.114.83 140.198.51.36 75.60.116.85 83.215.103.162 139.102.127.133 128.218.14.113 200.17.248.208 222.236.31.230 61.46.49.19 131.172.208.47 206.54.81.75 199.59.194.2 46.4.68.52 129.94.245.135 130.241.124.26 130.83.234.240 200.71.13.78 149.144.99.108 134.117.239.55 86.138.213.92 211.115.10.234 129.93.157.94 129.215.168.241 75.150.192.1 69.249.65.157 108.18.25.109 128.91.198.35 74.11.61.247 131.172.236.170 200.123.130.197 211.110.210.203 80.235.43.21 200.17.217.211 24.1.139.135 74.79.183.218 168.187.147.158 173.248.173.51 67.222.103.110 149.144.97.167 129.119.28.116 200.17.207.237 128.91.142.180 130.102.140.60 131.172.234.83 24.145.87.92 200.17.237.226 98.100.162.246 129.219.223.4 81.196.98.235 129.25.8.209 86.10.251.167 130.83.234.234 66.91.179.133 99.29.75.245 200.17.243.197 41.84.61.125 205.237.231.102 108.1.217.3 50.134.246.76 74.211.20.127 46.4.202.81 176.9.193.129 64.203.124.167 200.17.241.128 81.134.14.139 200.17.193.206 4.59.192.137 74.84.111.70 170.211.33.80 50.139.238.83 149.171.195.24 139.133.92.65 68.39.86.128 130.239.83.168 66.110.177.138
  13. care e folosul acetui card? adica ce faci cu el ? poti sa il incarci ? si daca da cum? si cat?
  14. 129.215.31.132 94.159.214.24 131.172.233.35 190.202.215.69 199.48.164.27 211.110.210.213 199.192.75.17 129.93.70.71 63.248.236.229 131.172.234.88 129.94.64.57 114.166.71.77 86.148.74.133 65.19.224.74 79.164.2.81 96.29.237.87 66.252.208.78 184.191.189.140 149.144.47.17 24.190.17.168 200.17.234.183 77.61.198.61 130.91.188.14 61.236.134.131 211.110.210.202 190.202.215.122 134.117.99.209 67.52.224.155 76.253.36.49 86.62.152.178 62.101.228.141 87.218.10.163 149.84.201.14 71.208.21.125 128.193.18.15 128.143.65.113 198.209.19.29 128.200.25.159 129.119.21.81 71.83.117.131 79.154.197.205 74.82.181.1 93.174.241.110 211.110.210.198 70.62.89.70 131.172.234.71 128.163.122.69 129.94.250.229 140.122.65.93 70.102.70.47 149.144.176.77 149.144.176.219 207.216.72.247 87.202.210.163 64.125.108.48 200.17.221.113 70.233.134.232 200.17.193.58 83.165.16.99 200.17.195.131 211.115.10.233 130.240.30.238 46.117.228.116 194.157.46.114 131.172.232.240 129.93.157.95 129.215.0.182 84.19.237.41 63.116.175.123 174.128.214.53 120.146.192.70 211.110.210.199 200.108.139.130 129.105.19.152 173.196.143.132 65.126.184.95 131.172.234.104 75.141.218.103 98.221.223.83 149.144.244.67 200.236.30.55 130.235.190.2 131.172.208.49 130.74.106.8 69.28.230.214 200.17.241.129 173.252.249.193 188.137.65.88 128.174.24.178 115.124.67.101 31.216.4.214 83.206.97.101 2.109.240.90 98.173.209.209 87.139.5.45 72.8.167.17 192.153.41.246 128.143.65.207 65.183.115.226 128.220.251.58 68.119.72.169 202.127.148.151 109.167.193.72 77.60.3.21 129.215.191.234 131.204.149.35 130.74.47.238 114.181.252.87 128.163.156.70 130.91.205.220 134.117.150.134 112.175.101.133 119.226.247.35 80.153.28.6 211.110.210.211 176.9.166.49 12.175.206.147 194.121.240.244 128.163.196.161 41.84.147.150 129.93.156.153 129.93.15.151 130.104.69.71 187.61.61.37 90.178.77.47 79.4.85.88 217.8.191.244 200.17.216.189 12.231.147.139
  15. 85.175.153.214 82.80.61.55 74.11.62.9 69.145.24.196 130.91.76.52 200.17.206.28 12.35.195.188 128.218.14.140 98.208.176.133 69.125.116.65 62.101.228.140 72.80.55.42 217.92.245.156 12.149.152.141 200.17.201.102 160.36.15.100 129.25.9.86 202.83.70.148 202.191.67.98 222.239.78.85 128.163.44.122 75.146.170.253 200.17.216.96 98.243.240.163 200.17.210.214 200.17.248.211 95.241.239.20 131.172.234.67 131.172.235.151 222.239.78.97 200.17.234.41 129.93.116.76 141.45.4.242 213.135.246.8 130.102.140.238 71.80.218.83 129.107.4.38 70.167.70.61 97.91.250.52 138.37.13.244 211.110.210.208 209.121.10.30 160.36.128.15 131.172.234.63 50.204.42.12 129.215.163.235 70.179.33.200 151.32.163.108 194.121.80.155 129.215.77.240 86.164.250.130 200.17.235.204 86.98.45.114 71.113.241.244 94.40.11.50 76.77.122.50 67.78.44.68 221.7.143.6 160.36.36.111 38.102.148.76 194.66.178.204 194.66.178.216
  16. more vnc 131.172.208.11 134.117.235.241 200.17.243.18 12.183.201.5 92.70.236.20 70.24.109.163 204.11.187.37 174.48.45.80 113.197.1.56 95.241.239.19 200.17.247.189 5.9.96.211 188.21.169.210 80.33.52.242 62.103.68.74 93.182.23.30 195.241.32.94 90.176.238.34 216.189.191.147 211.110.210.215 128.233.157.157 95.241.239.23 93.170.97.217 129.119.21.25 93.173.29.250 131.172.234.127 72.93.10.157 149.171.46.139 140.198.51.45 129.196.240.13 211.110.210.206 38.100.122.134 131.172.232.226 128.218.185.184 77.228.221.231 76.88.184.243 131.204.149.94 62.101.228.139 129.219.89.196 200.2.149.45 149.144.97.199 95.241.239.21 173.252.221.1 200.17.248.209 194.153.177.27 138.37.15.67
  17. 128.91.198.29 200.17.205.222 213.189.83.169 143.67.116.5 138.37.13.243 129.215.79.218 128.163.120.228 193.71.203.86 129.128.231.43 129.93.116.74 58.215.139.230 12.46.47.8 69.130.163.252 168.28.152.26 149.144.176.62 80.153.74.225 109.145.201.125 173.14.10.93 130.102.140.90 129.196.240.11 201.161.164.23 206.54.81.78 98.100.95.242 143.67.175.5 74.95.14.190 71.92.92.184 31.177.41.215 5.145.34.7 97.93.78.170 200.17.231.203 116.81.135.108 220.108.80.104 68.236.215.25 200.17.210.215 201.218.249.153 58.229.105.117 95.241.239.17 62.90.193.82 200.17.230.86 131.172.208.8 200.17.248.204 83.35.203.173 63.236.64.30 2.234.78.88 220.130.33.10 200.17.196.55 128.163.112.56 80.241.75.227 69.249.13.121 12.46.47.7 128.163.44.67 114.207.112.25 115.236.99.247 138.37.102.123 134.117.235.235 203.45.108.166 83.206.150.130 121.214.121.203 160.94.123.242 117.21.236.19 50.197.254.21 194.81.90.70 65.40.148.149 222.237.78.157 130.83.234.237 74.131.132.19 213.135.244.244 222.237.78.155 128.91.142.27 149.144.232.174 200.17.241.39 149.171.46.137 98.230.251.66 134.117.150.194 112.175.101.141 146.186.91.166 76.74.206.69 200.17.214.219 98.245.198.205 94.83.249.234 129.119.21.79 131.172.232.242 114.207.112.18 131.172.208.4 85.10.230.160 222.239.78.96 131.172.115.31 139.102.57.172 222.239.78.86 143.67.136.4 38.98.241.200 187.241.20.38 149.144.19.209 207.76.76.194 69.4.217.131 200.71.14.74 68.80.242.159 131.247.28.44 176.9.77.35 1.234.4.25 71.208.208.239 173.252.253.33 194.199.68.2 212.170.210.92 131.172.208.10 200.17.241.186 129.93.14.112 133.5.169.36 12.153.79.10 184.166.25.61 128.143.64.106 94.70.246.184 12.184.205.12 130.104.251.235 130.111.108.72 200.17.245.24 180.242.88.31 98.156.57.80 149.144.176.211 130.104.69.70 66.205.208.133 98.207.168.94 61.8.70.144 130.104.251.162 142.131.85.4 61.74.69.125 176.9.16.98 88.233.227.28 168.100.195.41 131.172.232.225 160.94.79.152 1.234.27.28 128.218.14.141 97.91.148.74 120.125.13.238 130.91.98.178 129.93.18.188 61.220.135.73 124.198.124.39 108.209.198.93 131.172.208.12 58.229.105.118 46.32.58.213 128.233.137.220 86.110.64.221 65.38.6.59 64.190.49.226 130.102.140.248 143.67.175.7 131.172.208.19 190.78.145.73 69.77.139.32
  18. 194.121.207.69 76.113.204.250 185.25.84.32 184.183.27.170 128.119.247.42 177.70.105.140 216.166.216.120 213.172.113.245 24.73.185.50 178.63.38.133 129.93.28.76 58.173.205.41 149.144.97.183 129.93.192.73 149.144.97.179 90.178.77.49 128.91.214.179 86.168.115.97 151.11.34.133 86.177.211.247 46.32.38.136 128.143.64.203 152.66.21.31 88.51.112.123 129.119.21.20 98.88.37.156 24.234.45.142 187.133.6.57 79.29.25.10 77.53.53.8 129.215.168.244 82.80.136.239 108.9.111.78 70.179.11.251 97.87.164.153 23.24.45.233 50.134.246.104 70.15.122.85 211.110.210.196 8.27.126.112 211.110.210.210 123.209.181.187 173.63.144.86 69.193.86.28 80.241.75.242 222.239.78.84 80.241.75.241 82.207.25.18 200.17.195.225 119.253.49.100 86.177.206.112 200.71.13.69 197.87.29.163 129.215.36.94 200.17.205.218 88.149.171.131 94.195.8.12 173.10.189.206 129.94.250.232 202.51.122.50 128.143.64.220 189.122.124.139 114.17.233.154 201.132.34.41 134.114.178.236 12.156.172.14 213.135.228.187 129.215.162.206 149.144.176.201 114.207.112.23 128.163.56.34 38.101.90.198 205.237.231.98 129.93.94.227 129.93.107.29 163.117.69.13 178.63.176.113 24.43.221.143 129.2.74.50 24.103.10.46 149.144.232.165 183.86.152.175 63.147.175.59 147.134.45.249 198.24.173.122 131.172.208.17 87.23.155.115 130.74.93.45 131.172.232.228 130.74.80.123 117.122.195.31 200.17.204.242 216.157.90.57 129.25.8.210 129.93.236.67 160.36.37.66 109.185.154.5 213.140.200.177 107.20.147.152 98.217.171.241
  19. e cumva scannerul facut de flux ?
  20. Nu aveti voie sa accesati acest fisier in mod direct.
  21. ba , care vrea scannerul il dau eu free , defapt nici nu va trebuie scanul , kope a fost amabil sa va dea exemplu in exploit cum sa scanati cu synscan dupa serverevulnerabile, dar totusi cine il vrea free de la mine , ce are in plus fata de ce este public este un script php care iti cauta servere posibil vulnerabile , am mai adaugat in "scanner" a fost un kkt de 1 linie de care incearca automat serverele vuln si le pune intr-un fisier mare branza ... o saluati cu el numai kernel 2012 2013 care nu pot fi "rootate" ci doar folosite pt roboti de mirc sau alte prostii de script kiddies
  22. buna, vreau ajutor in legatura cu alegerea la 1 procesor in 2 am asa: Tip procesor: Intel® CoreTM i5 Tehnologie procesor: 22 nm Model procesor: 3230M Model procesor: 3337U Frecventa procesor: 2600 MHz Frecventa procesor: 1800 MHz este vb de un sony vaio si un dell va rog frumos spune-ti si mie diferenta la Mhz , daca are o asa mare importanta vreau sa mai specific ca laptopurile sunt aproape la fel doar difera ce am scris eu mai sus , diferenta de pret intre ele este de 10 mil lei vechi va rog frumos sa ma ajutati sa aleg si sa imi da-ti o explicatie in legatura cu frecventa multumesc, sper ca am postat unde trebuie
  23. am incercat restore din itunes, dar nimik tot in safemode este, ajutati-ma va rog sa il scot din safemode
×
×
  • Create New...