This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"> | |
| <xsl:output method="xml" indent="yes"/> | |
| <xsl:param name="sourceFolder"/> | |
| <xsl:variable name="NumberOfItems" select="count(OWASPZAPReport/site/alerts/alertitem)"/> | |
| <xsl:variable name="generatedDateTime" select="OWASPZAPReport/generated"/> | |
| <xsl:template match="/"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| babecumtv.com | |
| specialtytubeporn.com | |
| teentube.be | |
| MySpace.com | |
| thepiratebay.org | |
| Ad.yieldmanager.com | |
| kickass.to | |
| Redtube.com | |
| limewire.com | |
| pornhub.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| docker run -d \ | |
| -p 8080:8080 \ | |
| -v /etc/localtime:/etc/localtime:ro \ | |
| -v /etc/timezone:/etc/timezone:ro \ | |
| -v ${PWD}/config:/config \ | |
| -v ${PWD}/datadir:/var/lib/mysql \ | |
| -v ${PWD}/videos:/opt/shinobi/videos \ | |
| -v /dev/shm/shinobiDockerTemp:/dev/shm/streams \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tr -cd 'A-Za-z0-9_-' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IFS=$'\n';for f in `find .`; do file=$(echo $f | tr [:blank:] '_'); [ -e $f ] && [ ! -e $file ] && mv "$f" $file;done;unset IFS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| KERNEL="vmlinuz-grsec" | |
| INITRD="initramfs-grsec" | |
| CMDLINE="alpine_dev=cdrom:iso9660 modules=loop,squashfs,sd-mod,usb-storage,sr-mod,earlyprintk=serial console=ttyS0" | |
| MEM="-m 1G" | |
| IMG_CD="-s 3,ahci-cd,alpine-3.2.3-x86_64.iso" | |
| PCI_DEV="-s 0:0,hostbridge -s 31,lpc" | |
| LPC_DEV="-l com1,stdio" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java -jar selenium-server-standalone-2.39.0.jar -htmlSuite "*firefox /usr/lib64/firefox/firefox-bin" "http://somedomain.com" "/path/to/TestSuite.html" "/path/to/test/results.html" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo dbus-uuidgen > /var/lib/dbus/machine-id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| iptables --flush | |
| # Open the following ports 80, 443, 8080 or add your own | |
| iptables -A INPUT -p tcp -m tcp --sport 80 -j ACCEPT | |
| iptables -A INPUT -p tcp -m tcp --sport 443 -j ACCEPT | |
| iptables -A INPUT -p tcp -m tcp --sport 8080 -j ACCEPT | |
| # Allow any outgoing requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Checkout master, fetch origin and merge changes to master | |
| find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git checkout master && git fetch origin && git merge origin/master" \; |
NewerOlder