Skip to content

Instantly share code, notes, and snippets.

View developerfred's full-sized avatar
👓

codingsh developerfred

👓
View GitHub Profile
@developerfred
developerfred / MKR_holders.csv
Created October 20, 2020 13:02 — forked from gane5h/MKR_holders.csv
MKR balance storage slot writes
We can't make this file beautiful and searchable because it's too large.
"block_signed_at","address","balance"
"2019-11-30 21:43:30+00","2d1d6d5deae5cc68d893a73781dd573fde302796",1227556400000000000
"2019-11-30 21:43:30+00","2b5634c42055806a59e9107ed44d43c426e58258",239060270600000000000
"2019-11-30 21:33:10+00","39755357759ce0d7f32dc8dc45414cca409ae24e",437140390807426204185
"2019-11-30 21:33:10+00","69076e44a9c70a67d5b79d95795aba299083c275",5878988991879486728884
"2019-11-30 21:33:10+00","e54365c85ca9b7e3ef68c5bed244dc10330bb264",0
"2019-11-30 21:32:32+00","ac8d6652067ca9b33bd15eeeeb01102d2d2cfc64",843100000000000000
"2019-11-30 21:29:27+00","2c4bd064b998838076fa341a83d007fc2fa50957",2964877658410763648961
"2019-11-30 21:29:27+00","9ba4ae48b8ca9e98e511b3371a4d454d1a3e1003",0
@developerfred
developerfred / noCash Rinkeby
Last active October 18, 2020 15:18
NocashRinkeby
Starting migrations...
======================
> Network name: 'rinkeby'
> Network id: 4
> Block gas limit: 10000000 (0x989680)
2_deploy_contracts.js
=====================
@developerfred
developerfred / activity_stream.css
Created August 19, 2020 19:28
GitCoin Fixed Email
#reflink {
cursor: pointer;
font-size: 12px;
padding: 3px;
background-color: #fff;
border: 0px solid;
color: #3d23fc;
}
.dark-mode #reflink {
@developerfred
developerfred / as-blockchain.md
Created August 4, 2020 03:58
AssemblyScript on Blockchain - Awesome Projects List
@developerfred
developerfred / github_bugbountyhunting.md
Created July 30, 2020 18:47 — forked from EdOverflow/github_bugbountyhunting.md
My tips for finding security issues in GitHub projects.

GitHub for Bug Bounty Hunters

GitHub repositories can disclose all sorts of potentially valuable information for bug bounty hunters. The targets do not always have to be open source for there to be issues. Organization members and their open source projects can sometimes accidentally expose information that could be used against the target company. in this article I will give you a brief overview that should help you get started targeting GitHub repositories for vulnerabilities and for general recon.

Mass Cloning

You can just do your research on github.com, but I would suggest cloning all the target's repositories so that you can run your tests locally. I would highly recommend @mazen160's GitHubCloner. Just run the script and you should be good to go.

$ python githubcloner.py --org organization -o /tmp/output
import React, {useEffect, useState} from "react"
import Link from "./Link"
import Translation from "./Translation"
const appList = [
{
name: "Gitcoin",
url: "https://gitcoin.co",
description: "dapp-desc-gitcoin",
},

terra wallet address: terra1mcylzqhunqla2smfeh2t07zu38mefusrc40jtw

/**
* generates object with all the data submitted during
* bounty creation
* @param {object} form
*/
const transformBountyData = form => {
let data = {};
let disabled = $(form).find(':input:disabled').removeAttr('disabled');
$.each($(form).serializeArray(), function() {
@developerfred
developerfred / mac.md
Last active September 6, 2021 21:24
How to Delete ALL node_modules folders on your machine and Free up HD space!

List Files

$ cd development_folder
$ find . -name "node_modules" -type d -prune | xargs du -chs

10G total