Skip to content

Instantly share code, notes, and snippets.

View pwnedDesal's full-sized avatar
🥔
ing circa '60

Adrian Belen pwnedDesal

🥔
ing circa '60
View GitHub Profile
Retrieves all of the trust relationships for this domain - Does not Grab Forest Trusts
([System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()).GetAllTrustRelationships()
Grab Forest Trusts.
([System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()).GetAllTrustRelationships()
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core/post/windows/powershell'
require 'fileutils'
class MetasploitModule < Msf::Post
include Msf::Post::Windows::Powershell
def initialize(info={})
super(update_info(info,
Date Open High Low Close Volume
9-Jun-14 62.40 63.34 61.79 62.88 37617413
6-Jun-14 63.37 63.48 62.15 62.50 42442096
5-Jun-14 63.66 64.36 62.82 63.19 47352368
4-Jun-14 62.45 63.59 62.07 63.34 36513991
3-Jun-14 62.62 63.42 62.32 62.87 32216707
2-Jun-14 63.23 63.59 62.05 63.08 35995537
30-May-14 63.95 64.17 62.56 63.30 45283577
29-May-14 63.84 64.30 63.51 63.83 42699670
28-May-14 63.39 64.14 62.62 63.51 47795088
var express = require("express");
var app = express();
var path = require("path");
const fs = require("fs");
var WebTorrent = require("webtorrent");
var client = new WebTorrent();
let dataFile = require("./torrent.json");
let torrentInfo = [];
function downloadTorrent(magnet) {
try {
#!/bin/bash
###############################################################
######################### FIND SOME URLS ######################
###############################################################
###fist parameter $1 is the url (i.e. google.com)
###second paramter $2 is the github token
mkdir output/recon/$1
#FILE structure should be
## /output/recon/domain/
#--->
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
import sys
import json
def waybackurls(host, with_subs):
if with_subs:
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host
@pwnedDesal
pwnedDesal / laravellocal.md
Created September 20, 2020 04:11 — forked from hootlex/laravellocal.md
Run laravel project locally

##Windows users:

cmder will be refered as console

##Mac Os, Ubuntu and windows users continue here:

  • Create a database locally named homestead utf8_general_ci
[
{
"cover-image": "../input/JPEG_example_JPG_RIP_100.jpg",
"cover-image-size": 83261,
"stego-image": "stego/output/jpg/1591796088.9662874/0.jpg",
"stego-image-size": 83271,
"stego-alogrithm": "@JPGAPP0",
"MSE": 0.0,
"SSIM": 1.0,
"PSNR": "infinity",
FROM ubuntu:latest
WORKDIR /app
RUN apt-get -y update --fix-missing && apt-get -y install ffmpeg
RUN apt-get install -y imagemagick
RUN apt install -y python3-pip
CMD [ "python3", "-m","http.server","80"]
@pwnedDesal
pwnedDesal / install virtualenv ubuntu 16.04.md
Created June 18, 2019 10:19 — forked from Geoyi/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv