H101 - Hacking 101

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
Ever wonder how they do it? Those crazy hackers and their magic tricks.

It is not magic, it is an illusion much like a magic show. Security itself is also somewhat illusional. Oftentimes systems look safer than they actually are. A car looks safe until it goes off the road at 80 MPH and smacks into a hard surface. A self-driving car sounds safe until someone wires a cellphone to the car, then is able to remotely control it with people inside (swerve off a bridge over water).


This video like the above text will give you ideas about the hacker mindset. This video is meant for educational purposes only. Not responsible for direct, indirect, incidental, or consequential damages resulting from misuse of presented information.
 

Kleberstoff

Knowledge Seeker
VIP
Dec 29, 2015
308
214
158
Very cool, funny and yet informational Video, loving it, looking forward to more of it!

You see that server? That mah bitch. Tightes pussy ever my G. She my GF an I'll marry'er

Great video :p
I died at that part and had to rewatch it because i laughed to hard.
 

Kieran

Tag me
Contributor
Jan 1, 2016
459
286
122
Very cool, funny and yet informational Video, loving it, looking forward to more of it!


I died at that part and had to rewatch it because i laughed to hard.
Yes these hilarious comparison are awesome xD I watched the video when I was on the bus to work and had a hard time trying not to laugh
 

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
Here is the second video:

Sorta tired making that video.. so yeah ;]
 
Last edited:

Kleberstoff

Knowledge Seeker
VIP
Dec 29, 2015
308
214
158
Don't know why it's not here, but here is H103 - Going Virtual. :p


H104 - Unhack yourself (Fix broken Sudo on Ubuntu)


H105 - Snapshots; Backup Your Backups

 
Last edited by a moderator:

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
H106 - Ditching The VM For Docker Containers


H107 - Docker With Debian Bind Port 80 Mapping Apache


 
Last edited:

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
H108 - Docker With DVWA


Code:
Pull image:
docker pull infoslack/dvwa


Start with random mysql password:
docker run -d -p 80:80 infoslack/dvwa

Or set environment variable:
docker run -d -p 80:80 -p 3306:3306 -e MYSQL_PASS="mypass" infoslack/dvwa

Code:
netstat -aon | findstr 0.0:80

tasklist /fi "pid eq "

taskkill /f /pid
 
Last edited:

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
I have a new H108 because apparently I messed up the other one:

This one hits a little closer to home, using TeamSpeak 3 as an example for a possible malicious payload.
 

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
Just published H111 on Windows registry hives, especially focusing on RunMRU:

Code:
regjump.exe HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU
You will need regjump for this.

Also

Code:
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f
 
Last edited:
Top