Skip to content

Instantly share code, notes, and snippets.

@WildDogOne
WildDogOne / IP of Agressor
Last active December 14, 2015 04:49
Phil IP
IP of agressor on Wikifur
http://en.wikifur.com/w/index.php?title=Delicious&action=history
http://en.wikifur.com/w/index.php?title=Delicious&oldid=392938
(cur | prev) 19:02, 17 February 2013 86.162.95.76 (Talk) (3,468 bytes) (undo)
(cur | prev) 18:58, 17 February 2013 86.162.95.76 (Talk) (3,468 bytes) (undo)
(cur | prev) 18:48, 17 February 2013 86.162.95.76 (Talk) (3,181 bytes) (→About Delicious) (undo)
(cur | prev) 18:43, 17 February 2013 86.162.95.76 (Talk) (3,178 bytes) (→Post restrictions) (undo)
(cur | prev) 18:39, 17 February 2013 86.162.95.76 (Talk) (3,168 bytes) (→Owner Info) (undo)
(cur | prev) 18:36, 17 February 2013 86.162.95.76 (Talk) (2,968 bytes) (→Owner Info) (undo)
@WildDogOne
WildDogOne / Linux Server Security
Last active December 15, 2015 20:40
Link Sammlung
Honeypot:
http://bruteforce.gr/installing-kippo-ssh-honeypot-on-ubuntu.html
SSH Hardening:
http://www.the-art-of-web.com/system/fail2ban-log/#.US9-d1Fv5u4
Antivirus:
http://www.clamav.net/lang/en/download/third-party-tools/3rdparty-webftp/
http://software.othello.ch/mod_clamav/
cls
#Konstanten
$location = "F:\Images\Grabber"
$sites = @("konachan.com","e621.net","danbooru.donmai.us","gelbooru.com","wildcritters.ws","yande.re")
$maxPath = 260
$files = Get-ChildItem -Recurse $location | Where {$_.psIsContainer -eq $false}
@WildDogOne
WildDogOne / Power Snippets
Last active December 28, 2015 01:09
Collection of little powershell things
This is a collection of little powershell things I liked :3
@WildDogOne
WildDogOne / FA_Downloader.ps1
Last active June 22, 2018 20:43
Furaffinity Downloader
cls
#Login Page for POST
$loginPage = "https://www.furaffinity.net/login/"
#Get Username
$username=read-host "Enter username: "
if($username -eq $null)
{
Write-host "no User entered"
@WildDogOne
WildDogOne / deleteMail.ps1
Last active December 1, 2016 06:30
Exchange Tasks
#Delete all mails in every mailbox with the Subject "Summer Offer"
Get-MailBox | Search-Mailbox -SearchQuery "Summer Offer" -DeleteContent
#Alternative
Get-Mailbox -Server "*Server*" | Search-Mailbox -SearchQuery 'Subject:"*Subject*" and Body:"*Body*"' -DeleteContent
@WildDogOne
WildDogOne / gist:ab5a0f53e589873a754e
Created May 5, 2015 11:42
Manually Update UTM/SUM
# cd /var/up2date/sys
# wget ftp://ftp.astaro.com/pub
# auisys.plx
@WildDogOne
WildDogOne / gist:425e7ba7791593f564da
Last active December 28, 2016 08:24
Install PBIS on Ubuntu 15.04
1. download powerbroker frome here http://download1.beyondtrust.com/Technical-Support/Downloads/PowerBroker-Identity-Services-Open-Edition/?Pass=True
2. sudo chmod a+x {filename}
sudo ./pibsfilename.sh
3. sudo domainjoin-cli join --disable ssh contoso.local administrator@contoso.local
4. sudo vim /etc/pam.d/common-session
add: "session [success=ok default=ignore] pam_lsass.so"
@WildDogOne
WildDogOne / gist:9ede384135eccbbe76e9
Created May 7, 2015 14:51
Gracefull Shutdown of an ESXi
Shutdown VMs:
/sbin/shutdown.sh
Poweroff the ESXi
/sbin/poweroff
list all vms:
vim-cmd vmsvc/getallvms
@WildDogOne
WildDogOne / cleanMailbox.ps1
Last active July 6, 2016 15:17
exchangeManagement
#Delete all mails in every mailbox with the Subject "Summer Offer"
Get-MailBox | Search-Mailbox -SearchQuery "Summer Offer" -DeleteContent
#Alternative
Get-Mailbox -Server "*Server*" | Search-Mailbox -SearchQuery 'Subject:"*Subject*" and Body:"*Body*"' -DeleteContent