Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/06/11 in all areas

  1. Panda Global Protection 2012 – 90 de zile licenta GRATUITA Panda a lansat gama de produse de securitate 2012 si are o oferta speciala: 90 de zile licenta GRATUITA. Iata ce aduce nou Panda Global Protection 2012: IMPROVED! Protection technologies to detect Viruses and others threats. IMPROVED! Detection based on behavioral analysis. IMPROVED! Firewall. Blocks intruders and hackers. IMPROVED! Panda USB Vaccine. Protects your PC and USB drives from infection. IMPROVED! Increased spam detection rates. IMPROVED! Parental Control, your children will be safer on the Internet. IMPROVED! Panda SafeCD, clean all types of malware from your computer if you cannot start Windows. IMPROVED! Improved Web browsing. IMPROVED! Improved interface for all types of users, from basic to technical. IMPROVED! Very easy activation process completed in two clicks. IMPROVED! All modules and features available at a single glance. NEW! New Web navigation report, see blocked sites. Pentru a obtine licenta GRATUITA 90 de zile pentru Panda Global Protection 2012 accesati link-ul: http://acs.pandasoftware.com/marketing/promo/PANDAGP12PROMO3M.exe Sursa: Panda Global Protection 2012 – 90 de zile licenta GRATUITA
    1 point
  2. S? spunem c? face?i rost de o sursa de C dar nu vre?i ?i comentariile din ea. #! /bin/sed -nf # Remove C and C++ comments, by Brian Hiles (brian_hiles@rocketmail.com) # Sped up (and bugfixed to some extent) by Paolo Bonzini (bonzini@gnu.org) # Works its way through the line, copying to hold space the text up to the # first special character (/, ", '). The original version went exactly a # character at a time, hence the greater speed of this one. But the concept # and especially the trick of building the line in hold space are entirely # merit of Brian. # ./script.sed < input.c # ./script.sed < input.c > output.c # for c in *.c; do script.sed < $c > /tmp/zyzcc.c; /bin/cp -f /tmp/zyzcc.c $c; done :loop # This line is sufficient to remove C++ comments! /^\/\// s,.*,, /^$/{ x p n b loop } /^"/{ :double /^$/{ x p n /^"/b break b double } H x s,\n\(.[^\"]*\).*,\1, x s,.[^\"]*,, /^"/b break /^\\/{ H x s,\n\(.\).*,\1, x s/.// } b double } /^'/{ :single /^$/{ x p n /^'/b break b single } H x s,\n\(.[^\']*\).*,\1, x s,.[^\']*,, /^'/b break /^\\/{ H x s,\n\(.\).*,\1, x s/.// } b single } /^\/\*/{ s/.// :ccom s,^.[^*]*,, /^$/ n /^\*\//{ s/..// b loop } b ccom } :break H x s,\n\(.[^"'/]*\).*,\1, x s/.[^"'/]*// b loop Cum se foloseste? ./removeCommends.sed fisierInitial.cpp > fisierFaraComentarii.cpp Bonus: Nu strica indentarea.
    1 point
  3. Avem sursa source.c /*Program simplu: Fiecare baiat din lume are 3 mere Fiecare fata din lume are 5 mere Sa se creeze un program care afla numarul de mere dintr-o camera cu un numar de baieti si de fete introdus de la tastatura*/ #include <stdio.h> int NumarBaieti; int NumarFete; int NumarMere; void main (void) { printf("\nIntrodu numarul de baieti din camera"); scanf("%d",&NumarBaieti); //Citim numarul de baieti printf("\nIntrodu numarul de fete din camera"); scanf("%d",&NumarFete); //Citim numarul de fete NumarMere=NumarBaieti*3+NumarFete*5; //Calculam numarul de mere printf("In camera sunt %d mere",NumarMere); } Pentru a elimina comentariile de genul: /*Program simplu: Fiecare baiat din lume are 3 mere Fiecare fata din lume are 5 mere Sa se creeze un program care afla numarul de mere dintr-o camera cu un numar de baieti si de fete introdus de la tastatura*/ Folosim urmatoarea comanda: cat source.c |sed '/\/\*/,/\*\//d' > newsource.c Noua sursa newsource.c va arata astfel: #include <stdio.h> int NumarBaieti; int NumarFete; int NumarMere; void main (void) { printf("\nIntrodu numarul de baieti din camera"); scanf("%d",&NumarBaieti); //Citim numarul de baieti printf("\nIntrodu numarul de fete din camera"); scanf("%d",&NumarFete); //Citim numarul de fete NumarMere=NumarBaieti*3+NumarFete*5; //Calculam numarul de mere printf("In camera sunt %d mere",NumarMere); } Pentru a elimina comentariile de genul: scanf("%d",&NumarBaieti); //Citim numarul de baieti sau //Calculam numarul de mere Folosim urmatoarea comanda: cat source.c |sed -e 's/\/\/.*$//g' > newsource.c Noua sursa newsource.c va arata astfel: /*Program simplu: Fiecare baiat din lume are 3 mere Fiecare fata din lume are 5 mere Sa se creeze un program care afla numarul de mere dintr-o camera cu un numar de baieti si de fete introdus de la tastatura*/ #include <stdio.h> int NumarBaieti; int NumarFete; int NumarMere; void main (void) { printf("\nIntrodu numarul de baieti din camera"); scanf("%d",&NumarBaieti); printf("\nIntrodu numarul de fete din camera"); scanf("%d",&NumarFete); NumarMere=NumarBaieti*3+NumarFete*5; printf("In camera sunt %d mere",NumarMere); } Pentru a elimina liniile goale folosim una din urmatoarele comenzi: cat source.c |sed '/^$/d' > newsource.c cat source.c |sed '/./!d' > newsource.c Noua sursa newsource.c va arata astfel: /*Program simplu: Fiecare baiat din lume are 3 mere Fiecare fata din lume are 5 mere Sa se creeze un program care afla numarul de mere dintr-o camera cu un numar de baieti si de fete introdus de la tastatura*/ #include <stdio.h> int NumarBaieti; int NumarFete; int NumarMere; void main (void) { printf("\nIntrodu numarul de baieti din camera"); scanf("%d",&NumarBaieti); //Citim numarul de baieti printf("\nIntrodu numarul de fete din camera"); scanf("%d",&NumarFete); //Citim numarul de fete NumarMere=NumarBaieti*3+NumarFete*5; //Calculam numarul de mere printf("In camera sunt %d mere",NumarMere); } Pentru a elimina liniile care contin doar tab-uri sau spatii folosim urmoatoarele comenzi: Pentru tab-uri: cat source.c |sed '/^\t\{1,\}$/d' > newsource.c Pentru space-uri: cat source.c |sed '/^\s\{1,\}$/d' > newsource.c Pentru a aplica toate cele prezentate folosim urmatoarea comanda: cat source.c |sed '/\/\*/,/\*\//d' |sed -e 's/\/\/.*$//g' |sed '/^$/d' |sed '/^\s\{1,\}$/d' |sed '/^\t\{1,\}$/d' > newsource.c Noua sursa newsource.c va arata astfel: #include <stdio.h> int NumarBaieti; int NumarFete; int NumarMere; void main (void) { printf("\nIntrodu numarul de baieti din camera"); scanf("%d",&NumarBaieti); printf("\nIntrodu numarul de fete din camera"); scanf("%d",&NumarFete); NumarMere=NumarBaieti*3+NumarFete*5; printf("In camera sunt %d mere",NumarMere); } Daca aveti ceva sugestii sau eventuale intrebari nu ezitati sa postati P.S. Scuze pentru "soursa" - sunt obosit si nici nu pot modifica titlul
    1 point
  4. zl0ba.boom.ru vxchaos.6x.to freewebs.com/green-hell virusvn.com low-level.da.ru stopxaker.ru planetcreator.net mdk.iwarp.com mytoxic.20m.com groups.yahoo.com/group/SymbWarrior terabit.blogfa.com taz.newffr.com/TAZ/_VX_ pb.specialised.info/all/tapion freewebs.com/jlnh/makeyourownvirus.htm rfidvirus.org members.fortunecity.com/acid_knight/virii.html users.cjb.net/purplejumpers/virusestrojans.htm polymorphic11.tripod.com/viruses.htm vx.netlux.org/delphi psvx.co.cc malwaredomainlist.com msbasic.wordpress.com ciberia.ya.com/neodrako evilcry.netsons.org freewebs.com/pcgeeks metamodellers.com/software/epigrass epterritori.rg3.netdarkcryptor.altervista.org web.tiscalinet.it/dec_spiderman cryptovirology.com forum.hackforce.ru groups.yahoo.com/group/BLACK_SYMBIAN asm-forum.cjb.net asmatiks.wordpress.com rigacci.org/comp/virus vx.netlux.org malwaredomains.com item9.org underc0ver.com insilence.biz k0de.org ddoser.info blog.botnet.biz sharplabs.wordpress.com icarusrat.wordpress.com ss-rat.blogspot.com pingmafia.com cybershade.org anti-sec.com hackhound.org hackforums.net hacksecu.com malwarereview.com enigmagroup.org level-23.com secret-zone.net tr0jan.net/blog/ avtracker.info advancevb.com.ar cigicigi.gen.tr/anasayfa/ indetectables.net hackaday.com hackthissite.org darkc0de.com darkode.com astalavista.com h4x4u.net76.net crazycoders.com offensivecomputing.net indianhackers.ning.com elite-programmers.com opensc.ws carder.biz hackingnation.com rohitab Exploit.IN codershop.eu malwares-in.net hackingnation.org hostbooter.com zone-hacker.net dark-sc.com h7labs.org naqzo.com carder.su hack-tech.com cyberterrorists.net pakhaxors.com alboraaq.com gothack.net rstcenter.com insecurity.ro cyber-sec.org se.curity.org blacksecurity.org darkcomet-rat.com packetstormsecurity.org the-everythingsite.com mpgh.net damagelab.org zloy.bz zloy.biz web-hack.ru nuclearwintercrew.com zonartm.org securityhome.eu securityvulns.com hack0wn.com inj3ct0r.net inj3ct0r.com nullbyte.org.il inj3ct0r.org morningstarsecurity.com professional-hacker.org sibirity.com md5this.com waraxe.us infosec.org.uk portswigger.net seclists.org nmap.org ihteam.net milw0rm.com heapoverflow.com securityfocus.com learnsecurityonline.com metasploit.com vupen.com full-tr.com coresecurity.com securitytracker.com securityspace.com securityreason.com evilaliv3.org scan4you.biz hackingspirits.com coffeeandsecurity.com h4cky0u.org cih.ms globalhackers.blogspot.com insecure.tk obscurant1st.blogspot.com governmentsecurity.org illmob.org securityh4x.blogspot.com mybazaar.biz hackpedia.info ph4nt0m.org 80sec.com 80vul.com blackhathacking.com computerforensics.parsonage.co.uk leetcoders.org anubis.iseclab.org viruschief.com virscan.org scanner.virus.org filterbit.com wab.ru virtest avcheck.ru avcheck.biz virustotal.com lostdoor.cn virusscan.jotti.org foro.latinohack.com underground.org.mx skamasle.com novirusthanks.org seguridadblanca.org comunidadraw.com sswteam.wordpress.com tecnohacker.com b4ckdoor.wordpress.com hackxcrack.es podzemlje.net trojansakla.net 1x33x7.forum2x2.ru progenic.com x1machine.com hackfind.com poisonivy-rat.com ddbot.x0r.su gh0stmarket.net security-shell.ws uNkn0wn.eu viotto-security.net blackhatworld.com blackhatmoneymaker.com seoblackhat.com blackhatseo.com blackhat-forums.com fuckav.ru h7labs.wordpress.com crimenetwork.biz vxx9.cc owned-m.com zone-h.org sharp-team.org digitalmunition.com foro.elhacker.net subreption.com ghc.ru rst.ghc.ru diablohorn.wordpress.com xatrix.org leetupload.com smashthestack.org hakin9.org helith.net googlebig.com milw0rm.biz insanesecurity.info 77169.com insecure.ro undersecurity.net black-zero.com h4xxor.blogspot.com ciscozine.com insecure.in itsolutionskb.com blacknite.eu hackingstuff4u.blogspot.com maycon.hacknroll.com jbrownsec.blogspot.com bbs.isbase.net zeroidentity.org evilsocket.net mrcracker.com hackersblog.org trythis0ne.com megapanzer.com novusec.com gohacking.com forum.intern0t.net shell-storm.org hakim.ws krakowlabs.com synsecurity.net unremote.org ethicalmafia.blogspot.com devilteam.pl backd0or.wordpress.com narrowfail.blogspot.com mymegafiles.com chinesehonker.org forum-hacker.com.br pay-per-install.org digitalgangster.com prohack.in kurd-security.com/h4kurd pawelzorzan.eu techmantras.com secgeeks.com atlantiq.pl destr0y.net theuntraceable.com blackmarket.mn freewebs.com/kill3rrag3/index.htm hackerscenter.com tippingpoint.com hackingrafica.forumcommunity.net ic0de.org localroot.net jatimcrew.net roothack.org carpetboy.securibox.net fullyundetected.com nodereality.com securibox.net bottalk.us SpiralForce.eu xaknet.ru mhs.blog.ui.ac.id vulns.ru securitynewsportal.com blackhack.ru the0.co.cc secnull.org attacker.securecrash.org/shellz zero-hack.com xeka.ru hack-team.info inattack.ru k0d.cc grabberz.com defeated.ru antichat.ru gfs-team.ru exit31.forumotion.com pro-hack.ru aventgrup.net ru24-team.net soqor.org revengehack.com sa3eka.com Security-Arge.com pakbugs.com users.freenet.am/~zombie evilzone.org exploit-db.com 3asfh.net fkn0wned.com houseofhackers.ning.com secnull.info criticalsecurity.net hellknights.void.ru hack3r.com turkishajan.com dual5651.hacktizen.com/new/ xp10.me kmasecurity.net/xforce/ masterhack.com izocin.com shellshop.hit.bg vbhacker.net joomlaexploit.com atlantislover.blogspot.com security-teams.net verified.ru maza.la paycash.cc prologic.su hack-info.ru chasenet.org culturahack.com.ar mk-eleet.org thestampdown.com anatoxis-tools.net twinkle-crypt.6x.to northfox.tk northfox.dyn.hu northfox.uw.hu hackers.ath.cx ntsecurity.nu securesphere.net eccouncil.org ughabi.blogspot.com heaventeam.ru backd00red.org cybergrup.org happyhacker.org hackmeout.net sec-t.net hakerstvo.informe.com techbroker.com googlehackings.blogspot.com networksecurityjournal.com hackingalert.com sql-injection-tools.blogspot.com xssed.com cyber-ta.org technoguru.forumotion.com swerat.com secdev.org michaeldaw.org nicenamecrew.com malwareforensics.com malwareurl.com csrrt.org anti-malware-test.com hackbase.cc h4ckforu.com nvlabs.in argeniss.com bytehero.com ddanchev.blogspot.com cassandrasecurity.com d2sec.com h-online.com pentestit.com
    1 point
  5. Cam a?a <input id="counting" value="0"/> <script type ="text/javascript"> var x = 0; function count() { x += 1; if (x==5) return true; document.getElementById("counting" ).value = x; return false; } </script> <form method='post'> <input name='sub' type='submit' value='schimba' onclick="return count()" /> </form>
    1 point
  6. Da dar cred ca ar fi mai bine sa ai un CDJ 2000 si un DJM 2000 daca esti mai cu bani.DJM 2000 e cel mai bun zic eu pentru ca ofera foarte multe effecte si il manevrezi cu usurinta. Dar si Numark este bun,nu zic ca nu..dar cum ai zis si tu..depinde cat te tine buzunarul.
    -1 points
  7. Descarca: multiupload.com/5CLM7GYX50 Parola: OG3wSD8pJyIDYhYSO2P7ak7wSSgOU/AwNR4bPGAnRy@xRVUaUSHtPVQ`ei3< Encriptare: TEXT -> ROT27 -> Blowfish (cheie: gz) -> XOR (cheie: gz) -> REVERSE -> BASE85 -> BASE64 -> ROT93 Sursa: hackforums.net
    -1 points
×
×
  • Create New...