Monday, January 27, 2020

Saturday, December 7, 2019

wget -r -np -nH --cut-dirs=3 -R index.html http://hostname/aaa/bbb/ccc/ddd/
Explanation:
  • It will download all files and subfolders in ddd directory
  • -r : recursively
  • -np : not going to upper directories, like ccc/…
  • -nH : not saving files to hostname folder
  • --cut-dirs=3 : but saving it to ddd by omitting first 3 folders aaa, bbb, ccc
  • -R index.html : excluding index.html files
Reference: http://bmwieczorek.wordpress.com/2008/10/01/wget-recursively-download-all-files-from-certain-directory-listed-by-apache/

Monday, May 20, 2019

Reverse Engineering Resources

https://joshstepp.com/post/2019reresources/
https://malwareunicorn.org/#/resources
https://azeria-labs.com/

Wednesday, May 15, 2019

Empty AD groups

Get-ADGroup -Filter * -Properties Members,whenCreated,SamAccountName,DistinguishedName | Where {-not $_.members} | select whencreated, SamAccountName,DistinguishedName | E
xport-Csv EmptyADGroups.csv –NoTypeInformation

Tuesday, July 17, 2012