Skip to content

Instantly share code, notes, and snippets.

View jimywork's full-sized avatar
🌴
On vacation

Fábio Castro jimywork

🌴
On vacation
  • São Paulo, Brazil
View GitHub Profile
@jimywork
jimywork / hello.txt
Last active November 15, 2018 13:22
First Challenge
.text
.globl main
main:
li $a0, 10 # Add value 10 to $a0
li $v0, 1 # Add value 1 to $a0
# Loop
Loop:
beq $a0, $zero, exit # Exit equals 0
mul $v0, $a0, $v0 # Multiply $a0 by $v0
add $a0, $a0, -1
@jimywork
jimywork / infowarstores.com.js
Created November 14, 2018 08:56 — forked from gwillem/infowarstores.com.js
de-obfuscated infowarsstore.com payment skimmer as detected on 2018-11-12 by https://twitter.com/gwillem
var idString = "id",
nameString = "name",
tokenOrCSRF = new RegExp("token|search|csfr|keyword|button"),
zoneRegionStateCountry = new RegExp("zone|region|state|country"),
formObj = {},
formLength = 0,
emptyString = "",
devToolsStatus = {
open: !1,
orientation: null
@jimywork
jimywork / threads.py
Created November 10, 2018 00:02
Working with threads
import time
import threading
import queue
import logging
import requests
logging.basicConfig(
level=logging.DEBUG,
format='[%(levelname)s] (%(threadName)-10s) %(message)s',
)
@jimywork
jimywork / auth.py
Last active November 5, 2018 18:04
Simple tool to make brute force on github accounts
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
import json
import time
import os
import random
@jimywork
jimywork / convert.sh
Created October 17, 2018 18:21
Converting .jpg files to png
#!/bin/bash
convertIMAGEM () {
echo "Convertendo os arquivos .jpg para .png"
sleep 1
for imagem in *.jpg
do
echo "Convertendo a imagem" $imagem
import ftplib
import shodan
creds = ('admin', '')
api = shodan.Shodan("TOKEN")
results = api.search('port:"21" country:"BR" product:"MikroTik router ftpd"', page=1, limit=1000, offset=None)
print("[+] Connected Succesfull on Shodan API\n[+] Shodan Search Found: {}\n".format(results["total"]))
@jimywork
jimywork / setup.py
Last active May 16, 2018 14:41
Program dependency configuration file with pip
import pip
import os
import time
def install():
"""Installing as Program Dependencies"""
try:
with open("requirements.txt", "r") as requirements:
Fabio Castro::
import java.util.Arrays;
public class MeuVetor {
private double[] notas = new double[5];
public MeuVetor() {
limpar();
}
@jimywork
jimywork / app.js
Last active January 17, 2018 11:55
Simple API for fetching keywords in database with express and mongodb
var util = require('util');
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/dexter', { useMongoClient: true });
mongoose.Promise = global.Promise;
var database = require('./models/database.js');
var express = require('express');
var app = express();

Keybase proof

I hereby claim:

  • I am 6IX7ine on github.
  • I am 6ix7ine (https://keybase.io/6ix7ine) on keybase.
  • I have a public key whose fingerprint is 7C76 2060 A938 7FF8 26D9 ADF3 7F64 16B0 A124 0B60

To claim this, I am signing this object: