Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
hacking: security in practice
Getting into old YouTube account?

Hi, I’m not sure where else to go but I am completely new to this and need help getting into an old YouTube account I want to remove. I know it might sound a bit odd or suspicious but they’re basically channels I made when I was young (I know 🤦‍♂️) that I don’t remember the email (I think it was an elementary school email that doesn’t exist anymore) and I also can’t remember the passwords. They only have like 5 subscribers and a couple crappy videos. Is there anyway to “hack” into these accounts to retrieve the email at least? Sorry if this isn’t allowed or I’m in the wrong place but any help is appreciated:)

submitted by /u/brscxs
[link] [comments]
MSA Weekly 1 — “5 OS untuk Cyber Security”

Jika kita membicarakan yang namanya Operating System (OS), sangatlah banyak diluar sana developer yang membuat/mendevelop Operating System…Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hacking the Coffee Maker

https://cdn-images-1.medium.com/max/867/0*B0-m81z-nq3bWE10.png
I’ve been using the coffee maker we bought years ago, almost every week (except on hot days) and it’s always this light brown-ish coffee…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
TryHackMe : Library write-up

https://cdn-images-1.medium.com/max/1024/1*2ZgBti52XDgd3PPnLm42Hg.png
I start usually by updating the hosts file on my computer, in order to make accessing the machine easier without the need of typing the IP…

Continue reading on Medium »
a very rough work-in-progress adventure into learning nim by cobbling resources together to create a shellcode loader that implements common EDR/AV evasion techniques. This is a mess and is for research (https://www.kitploit.com/search/label/Research) purposes only! Please don't expect it to compile and run without your own modifications.
Instructions Replace the byte array in loader.nim with your own x64 shellcode Compile the EXE and run it: nim c -d:danger -d:strip --opt:size "loader.nim" Probably adjust which process you want to inject into by looking in the .nim files of the injection (https://www.kitploit.com/search/label/Injection) folder method you're using... Completed Features Direct syscalls (https://www.kitploit.com/search/label/Syscalls) dynamically resolved from NTDLL (Thanks @ShitSecure) AMSI and ETW patching (https://www.kitploit.com/search/label/Patching) (Thanks @byt3bl33d3r) NTDLL unhooking (Thanks @MrUn1k0d3r) CreateRemoteThread injection (Thanks @byt3bl33d3r, @ShitSecure) WIP Features Process Hollowing Technique (Thanks @snovvcrash) Shellcode encryption/decryption using [AES in CTR mode](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Counter_(CTR) (Thanks @snovvcrash) Replace all compatible API calls with syscalls Add template generator (https://www.kitploit.com/search/label/Generator) and compiler, cmdline args for shellcode, injection methods, process paths, etc. Obfuscation Consider using denim (https://github.com/moloch--/denim) by @LittleJoeTables for obfuscator-llvm nim compilation support! References & Inspiration OffensiveNim by Marcello Salvati (@byt3bl33d3r) NimlineWhispers2 by Alfie Champion (@ajpc500) SysWhispers3 by klezVirus (@KlezVirus) NimPackt-v1 by Cas van Cooten (@chvancooten) unhook_bof.c by Mr. Un1k0d3r (@MrUn1k0d3r) NimGetSyscallStub by S3cur3Th1sSh1t (@ShitSecure) NimHollow by snovvcrash (@snovvcrash) Examples