Leaderboard
Popular Content
Showing content with the highest reputation on 12/10/11 in all areas
-
Salut lume, v-am adus un boomber pt. Romania. E foarte simplu de folosit: -Introduceti numarul -Setati numarul de mesaje -Click pe start :Analiza virus: Link updatat:==> Aici *)-Daca vreti il luati, daca nu, NU. **)-Daca a mai fost postat rog un admin sa-mi stearga postul. **)-Nu cer reputation points- daca considerati ca merit, add.1 point
-
Cu acest script poti descarca videoclipuri de pe VPlay. Scriptul este simplu, fara interfata. L-am facut cu ajutorul lui SlicK. Nu merge inca pentru seriale. In loc de IDFILM pui id-ul filmului de pe VPlay. De exemplu, pentru asta, id-ul filmului este gy3drjmj. <?php //mod de folosire : pagina.php?k=IDFILM $k = $_GET['k']; $x = curl_init("http://www.vplay.ro/play/dinosaur.do"); curl_setopt($x, CURLOPT_POST, 1); curl_setopt($x, CURLOPT_POSTFIELDS, 'onLoad=%5Btype%20Function%5D&external=0&key='.$k); curl_setopt($x, CURLOPT_FOLLOWLOCATION, 0); curl_setopt($x, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($x); $q = get_string_between ($data, '=','&'); header("Cache-Control: public"); header("Content-Description: File Transfer"); header('Content-Disposition: attachment; filename="video.flv"'); header("Content-Type: application/flv"); header("Content-Transfer-Encoding: binary"); readfile($q); curl_close($x); function get_string_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } ?>1 point
-
~ List spamming ~ external SMTP ~ progressbar In a new version i will include an internal STMP so you can spam better and without a llimit =) . It´s a SPAMMER and NOT a BOMBER Download: http://ul.to/wekimy1 point
-
Nu vinde gogosi ca nu merge @charset "utf-8"; /* CSS Document */ MM_swapImage('Image4','','img/homeO.png',1)1 point
-
Author(s): Bert Hubert Netherlabs BV Thomas Graf (Section Author) Gregory Maxwell (Section Author) Remco van Mook (Section Author) Martijn van Oosterhout (Section Author) Paul B Schroeder (Section Author) Jasper Spaans (Section Author) Pedro Larroy (Section Author) Description: A very hands-on approach to iproute2, traffic shaping and a bit of netfilter. [B]Table of Contents[/B] 1. Dedication 2. Introduction 2.1. Disclaimer & License 2.2. Prior knowledge 2.3. What Linux can do for you 2.4. Housekeeping notes 2.5. Access, CVS & submitting updates 2.6. Mailing list 2.7. Layout of this document 3. Introduction to iproute2 3.1. Why iproute2? 3.2. iproute2 tour 3.3. Prerequisites 3.4. Exploring your current configuration 3.4.1. ip shows us our links 3.4.2. ip shows us our IP addresses 3.4.3. ip shows us our routes 3.5. ARP 4. Rules - routing policy database 4.1. Simple source policy routing 4.2. Routing for multiple uplinks/providers 4.2.1. Split access 4.2.2. Load balancing 5. GRE and other tunnels 5.1. A few general remarks about tunnels: 5.2. IP in IP tunneling 5.3. GRE tunneling 5.3.1. IPv4 Tunneling 5.3.2. IPv6 Tunneling 5.4. Userland tunnels 6. IPv6 tunneling with Cisco and/or 6bone 6.1. IPv6 Tunneling 7. IPSEC: secure IP over the Internet 7.1. Intro with Manual Keying 7.2. Automatic keying 7.2.1. Theory 7.2.2. Example 7.2.3. Automatic keying using X.509 certificates 7.3. IPSEC tunnels 7.4. Other IPSEC software 7.5. IPSEC interoperation with other systems 7.5.1. Windows 7.5.2. Check Point VPN-1 NG 8. Multicast routing 9. Queueing Disciplines for Bandwidth Management 9.1. Queues and Queueing Disciplines explained 9.2. Simple, classless Queueing Disciplines 9.2.1. pfifo_fast 9.2.2. Token Bucket Filter 9.2.3. Stochastic Fairness Queueing 9.3. Advice for when to use which queue 9.4. Terminology 9.5. Classful Queueing Disciplines 9.5.1. Flow within classful qdiscs & classes 9.5.2. The qdisc family: roots, handles, siblings and parents 9.5.3. The PRIO qdisc 9.5.4. The famous CBQ qdisc 9.5.5. Hierarchical Token Bucket 9.6. Classifying packets with filters 9.6.1. Some simple filtering examples 9.6.2. All the filtering commands you will normally need 9.7. The Intermediate queueing device (IMQ) 9.7.1. Sample configuration 10. Load sharing over multiple interfaces 10.1. Caveats 10.2. Other possibilities 11. Netfilter & iproute - marking packets 12. Advanced filters for (re-)classifying packets 12.1. The u32 classifier 12.1.1. U32 selector 12.1.2. General selectors 12.1.3. Specific selectors 12.2. The route classifier 12.3. Policing filters 12.3.1. Ways to police 12.3.2. Overlimit actions 12.3.3. Examples 12.4. Hashing filters for very fast massive filtering 12.5. Filtering IPv6 Traffic 12.5.1. How come that IPv6 tc filters do not work? 12.5.2. Marking IPv6 packets using ip6tables 12.5.3. Using the u32 selector to match IPv6 packet 13. Kernel network parameters 13.1. Reverse Path Filtering 13.2. Obscure settings 13.2.1. Generic ipv4 13.2.2. Per device settings 13.2.3. Neighbor policy 13.2.4. Routing settings 14. Advanced & less common queueing disciplines 14.1. bfifo/pfifo 14.1.1. Parameters & usage 14.2. Clark-Shenker-Zhang algorithm (CSZ) 14.3. DSMARK 14.3.1. Introduction 14.3.2. What is Dsmark related to? 14.3.3. Differentiated Services guidelines 14.3.4. Working with Dsmark 14.3.5. How SCH_DSMARK works. 14.3.6. TC_INDEX Filter 14.4. Ingress qdisc 14.4.1. Parameters & usage 14.5. Random Early Detection (RED) 14.6. Generic Random Early Detection 14.7. VC/ATM emulation 14.8. Weighted Round Robin (WRR) 15. Cookbook 15.1. Running multiple sites with different SLAs 15.2. Protecting your host from SYN floods 15.3. Rate limit ICMP to prevent dDoS 15.4. Prioritizing interactive traffic 15.5. Transparent web-caching using netfilter, iproute2, ipchains and squid 15.5.1. Traffic flow diagram after implementation 15.6. Circumventing Path MTU Discovery issues with per route MTU settings 15.6.1. Solution 15.7. Circumventing Path MTU Discovery issues with MSS Clamping (for ADSL, cable, PPPoE & PPtP users) 15.8. The Ultimate Traffic Conditioner: Low Latency, Fast Up & Downloads 15.8.1. Why it doesn't work well by default 15.8.2. The actual script (CBQ) 15.8.3. The actual script (HTB) 15.9. Rate limiting a single host or netmask 15.10. Example of a full nat solution with QoS 15.10.1. Let's begin optimizing that scarce bandwidth 15.10.2. Classifying packets 15.10.3. Improving our setup 15.10.4. Making all of the above start at boot 16. Building bridges, and pseudo-bridges with Proxy ARP 16.1. State of bridging and iptables 16.2. Bridging and shaping 16.3. Pseudo-bridges with Proxy-ARP 16.3.1. ARP & Proxy-ARP 16.3.2. Implementing it 17. Dynamic routing - OSPF and BGP 17.1. Setting up OSPF with Zebra 17.1.1. Prerequisites 17.1.2. Configuring Zebra 17.1.3. Running Zebra 17.2. Setting up BGP4 with Zebra 17.2.1. Network Map (Example) 17.2.2. Configuration (Example) 17.2.3. Checking Configuration 18. Other possibilities 19. Further reading 20. Acknowledgements Link: http://lartc.org/lartc.html Enjoy =)1 point
-
1 point
-
E facut in Visual Basic (MVS 2010) Ok, nu e hack tool. si nu cersesc reputatie bro +rep daca va este util nu "Dati-mi si mie +rep ca vreau sa cresc , va rog frumos" (oricum am sa tin cont) spider e spider , nu sunt tot eu1 point
-
1 point
-
1 point
-
Intelegeti. Vam dat sursa destul de clar. Daca GAMELOFT sau uitat peste loguri (peste sunt loguri),si au vazut ca se trimit mesaje in prostie,este si normal ca ori au scos linku,ori au restrictionat accesul; Asadar,programul trimite comanda,si raspunde "succes". Programul nu are setari care sa arate daca linkul mai exista sau nu! Deci pana la urma tot la PHP ajungem,asa ca am sa fac eu script pt toti membrii RST mocca! P.S Mecanik = gm_dizzy Banat pentru o prostie!-1 points
-
[h=4]Hijack From Android Phone[/h] Description: I installed DroidSheep for V14, it is an open source software. Please visit this website and download the APK package. (http://droidsheep.de/) enjoy~ Sursa: Hijack From Android Phone Exemplu de capturare a unei sesiuni HTTP folosind DroidSheep pe un telefon cu Android.-1 points
-
Multi Downloader este un program cu care poti descarca de pe [img=http://static.real-debrid.com/images/hosters/megaupload.png] Megaupload [img=http://static.real-debrid.com/images/hosters/filefactory.png] Filefactory [img=http://static.real-debrid.com/images/hosters/zshare.png] zShare [img=http://static.real-debrid.com/images/hosters/letitbit.png] Letitbit [img=http://static.real-debrid.com/images/hosters/vipfile.png] Vip-File [img=http://static.real-debrid.com/images/hosters/filesmonster.png] FilesMonster [img=http://static.real-debrid.com/images/hosters/4shared.png] 4Shared [img=http://static.real-debrid.com/images/hosters/depositfiles.png] Depositfiles [img=http://static.real-debrid.com/images/hosters/easyshare.png] EasyShare [img=http://static.real-debrid.com/images/hosters/freakshare.png] Freakshare [img=http://static.real-debrid.com/images/hosters/free.png] Free [img=http://static.real-debrid.com/images/hosters/hotfile.png] Hotfile [img=http://static.real-debrid.com/images/hosters/mediafire.png] Mediafire [img=http://static.real-debrid.com/images/hosters/megaporn.png] Megaporn [img=http://static.real-debrid.com/images/hosters/megashares.png] Megashares [img=http://static.real-debrid.com/images/hosters/megavideo.png] Megavideo [img=http://static.real-debrid.com/images/hosters/netload.png] Netload [img=http://static.real-debrid.com/images/hosters/rs.png] RS [img=http://static.real-debrid.com/images/hosters/sendspace.png] Sendspace [img=http://static.real-debrid.com/images/hosters/filesonic.png] FileSonic [img=http://static.real-debrid.com/images/hosters/uploadbox.png] Uploadbox [img=http://static.real-debrid.com/images/hosters/uploadedto.png] Uploaded [img=http://static.real-debrid.com/images/hosters/uploading.png] Uploading [img=http://static.real-debrid.com/images/hosters/x7to.png] x7 [img=http://static.real-debrid.com/images/hosters/dateito.png] Datei.to [img=http://static.real-debrid.com/images/hosters/shareflare.png] ShareFlare [img=http://static.real-debrid.com/images/hosters/sharecash.png] Sharecash [img=http://static.real-debrid.com/images/hosters/fileserve.png] Fileserve [img=http://static.real-debrid.com/images/hosters/extabit.png] Extabit [img=http://static.real-debrid.com/images/hosters/zippyshare.png] Zippyshare [img=http://static.real-debrid.com/images/hosters/badongo.png] Badongo [img=http://static.real-debrid.com/images/hosters/turbobit.png] Turbobit [img=http://static.real-debrid.com/images/hosters/megaporn.png] Megaporn Video [img=http://static.real-debrid.com/images/hosters/purevid.png] Purevid [img=http://static.real-debrid.com/images/hosters/dailymotion.png] Dailymotion [img=http://static.real-debrid.com/images/hosters/share-online.png] Share-Online [img=http://static.real-debrid.com/images/hosters/filesend.png] Filesend [img=http://static.real-debrid.com/images/hosters/megashare.png] Megashare [img=http://static.real-debrid.com/images/hosters/loadto.png] Load.to [img=http://static.real-debrid.com/images/hosters/ugotfile.png] Ugotfile [img=http://static.real-debrid.com/images/hosters/gigasize.png] Gigasize [img=http://static.real-debrid.com/images/hosters/unibytes.png] Unibytes [img=http://static.real-debrid.com/images/hosters/slingfile.png] Slingfile [img=http://static.real-debrid.com/images/hosters/hellshare.png] Hellshare [img=http://static.real-debrid.com/images/hosters/cramit.png] Cramit [img=http://static.real-debrid.com/images/hosters/enterupload.png] Enterupload [img=http://static.real-debrid.com/images/hosters/videozer.png] Videozer [img=http://static.real-debrid.com/images/hosters/shragle.png] Shragle [img=http://static.real-debrid.com/images/hosters/vidxden.png] Vidxden [img=http://static.real-debrid.com/images/hosters/2shared.png] 2Shared Furk VideoBB Uploadspace Fileflyer Bitshare Hitfile iFolder Uptobox Goldfile Fileape Fileover Youtube Wupload Dengee GigaUP Kickload Vimeo Gigapeta Wat.tv Filekeen Mixturevideo Filepost Userporn Uploadking Hulkshare Putlocker Uploadhere Filedino Jakfile Crocko Oron Sockshare Youporn asteptand doar 5 secunde / fara survey VirusTotal AhnLab-V3 2011.12.09.00 2011.12.09 - AntiVir 7.11.19.52 2011.12.09 - Antiy-AVL 2.0.3.7 2011.12.09 - Avast 6.0.1289.0 2011.12.09 - AVG 10.0.0.1190 2011.12.09 - BitDefender 7.2 2011.12.09 - ByteHero 1.0.0.1 2011.12.07 - CAT-QuickHeal 12.00 2011.12.09 - ClamAV 0.97.3.0 2011.12.09 - Commtouch 5.3.2.6 2011.12.09 - Comodo 10899 2011.12.09 - DrWeb 5.0.2.03300 2011.12.09 - Emsisoft 5.1.0.11 2011.12.09 - eSafe 7.0.17.0 2011.12.08 - eTrust-Vet 37.0.9615 2011.12.09 - F-Prot 4.6.5.141 2011.11.29 - F-Secure 9.0.16440.0 2011.12.09 - Fortinet 4.3.388.0 2011.12.09 - GData 22 2011.12.09 - Ikarus T3.1.1.109.0 2011.12.09 - Jiangmin 13.0.900 2011.12.09 Trojan/Generic.lbly K7AntiVirus 9.119.5640 2011.12.09 - Kaspersky 9.0.0.837 2011.12.09 - McAfee 5.400.0.1158 2011.12.09 - McAfee-GW-Edition 2010.1E 2011.12.09 - Microsoft 1.7903 2011.12.09 - NOD32 6691 2011.12.07 - Norman 6.07.13 2011.12.09 - nProtect 2011-12-09.01 2011.12.09 - Panda 10.0.3.5 2011.12.09 - PCTools 8.0.0.5 2011.12.09 - Prevx 3.0 2011.12.09 - Rising 23.87.03.02 2011.12.08 - Sophos 4.72.0 2011.12.09 - SUPERAntiSpyware 4.40.0.1006 2011.12.09 - Symantec 20111.2.0.82 2011.12.09 - TheHacker 6.7.0.1.353 2011.12.07 - TrendMicro 9.500.0.1008 2011.12.09 - TrendMicro-HouseCall 9.500.0.1008 2011.12.09 - VBA32 3.12.16.4 2011.12.09 - VIPRE 11224 2011.12.09 - ViRobot 2011.12.9.4817 2011.12.09 - VirusBuster 14.1.107.0 2011.12.09 - novirusthanks : [i]File Info[/i] Report date: 2011-12-09 21:26:59 (GMT 1) File name: [b]multidownloader-exe[/b] File size: 1149952 bytes MD5 Hash: e2400b61cc82c51fc02c11b1be8687cc (am scanat fisierul apoi am mai adaugat cateva linii de cod.. MD5 Hash nu va mai fi acelasi) SHA1 Hash: f829e3f5aad8a3a2d7dfa02e81aca6e8fbe247fe Detection rate: 0 on 9 (0%) Status: [color=green]CLEAN[/color] [i]Detections[/i] Avast - [color=red][/color] AVG - [color=red][/color] Avira AntiVir - [color=red][/color] ClamAV - [color=red][/color] Comodo - [color=red][/color] Emsisoft - [color=red][/color] F-Prot - [color=red][/color] Ikarus - [color=red][/color] TrendMicro - [color=red][/color] [i]Scan report generated by [url=http://novirusthanks.org]NoVirusThanks.org[/url][/i] Download : Download MultiDownloader.exe from Sendspace.com - send big files the easy way Am folosit o "prajiturica" Premium (Real-Debrid | Quality Unrestricted Downloaders) screen : http://img41.imageshack.us/img41/4319/md1t.png http://img846.imageshack.us/img846/5964/md2o.png +rep daca va ajuta cu ceva P.S. ShareCash error : File's hoster is in maintenance. Try again later.-1 points