cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.txt
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
id: CVE-2022-47966 | |
info: | |
name: ManageEngine - Remote Command Execution | |
author: rootxharsh,iamnoooob,DhiyaneshDK | |
severity: critical | |
description: | | |
Multiple Zoho ManageEngine on-premise products, such as ServiceDesk Plus through 14003, allow remote code execution due to use of Apache xmlsec (aka XML Security for Java) 1.4.1, because the xmlsec XSLT features, by design in that version, make the application responsible for certain security protections, and the ManageEngine applications did not provide those protections. | |
reference: | |
- https://twitter.com/horizon3attack/status/1616062915097886732?s=46&t=ER_is9G4FlEebVFQPpnM0Q |
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
Installing GCP and Package :: | |
________________________________ | |
apt install python2 openssh -y | |
export CLOUDSDK_PYTHON='python2.7' | |
echo "export CLOUDSDK_PYTHON='python2.7'" >> ~/.bashrc | |
echo "export PATH=$PATH:$PREFIX/google-cloud-sdk/bin" | |
curl -o sdk.sh sdk.cloud.google.com | |
chmod +x sdk.sh | |
./sdk.sh --install-dir=$PREFIX |
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 | |
############################################################ | |
# Squid Proxy Installer | |
# Author: Yujin Boby | |
# Email: [email protected] | |
# Github: https://github.com/serverok/squid-proxy-installer/ | |
# Web: https://serverok.in/squid | |
############################################################ | |
# For paid support, contact | |
# https://serverok.in/contact |
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
{ | |
"url": "https://jumpy-floor.surge.sh/test.yaml", | |
"urls": [ | |
{ | |
"url": "https://jumpy-floor.surge.sh/test.yaml", | |
"name": "Foo" | |
} | |
] | |
} |
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
<script> | |
console.log(1) | |
</script> |
Today I tried to setup a small Kubernetes cluster on top of 3 Raspberry Pi 4 (4GB Memory). Here is the steps to install the cluster.
I have 3 Raspberry Pi 4 stacked with PoE headers and connected to a PoE switch at home. The are connected to Internet through a home router. All Pis are equipped with a 64GB Samsung SDXC card flushed with Ubuntu 20.04 image.
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
import requests | |
import json | |
from os import name,system | |
from sys import stdout | |
from random import choice,randint | |
from string import ascii_letters,digits | |
from colorama import init,Style,Fore | |
from bs4 import BeautifulSoup | |
from threading import Thread,Lock,active_count | |
from time import sleep |
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
using System; | |
namespace EF.Core.Audit | |
{ | |
public abstract class Auditable | |
{ | |
public virtual DateTime CreatedAt { get; set; } | |
public virtual DateTime? UpdatedAt { get; set; } | |
public virtual DateTime? DeletedAt { get; set; } | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Xml.Linq; | |
using RestSharp; |