Skip to content

Instantly share code, notes, and snippets.

View diananerd's full-sized avatar
😎

Diana Nerd diananerd

😎
View GitHub Profile
@diananerd
diananerd / userslist.txt
Created March 8, 2024 00:10
Users list dictionary for the Platzi CTF: Hack The World (2024)
otha.rau
robb.rau
asa.wolf
toby.rau
dax.conn
lon.mohr
tom.rice
obie.rau
alf.kris
kiel.toy
@diananerd
diananerd / sqli.txt
Created February 23, 2024 02:16
SQL Injection example for OWASP Top 10 vulnerable application
' WHERE u.id = 2; UPDATE user_roles ur SET role_id = 1 WHERE ur.user_id = 2;SELECT * FROM users u --'
@diananerd
diananerd / directory-list-2.3-medium.txt
Created February 22, 2024 21:13
Directory list 2.3 medium by James Fisher
This file has been truncated, but you can view the full file.
# directory-list-2.3-medium.txt
#
# Copyright 2007 James Fisher
#
# This work is licensed under the Creative Commons
# Attribution-Share Alike 3.0 License. To view a copy of this
# license, visit http://creativecommons.org/licenses/by-sa/3.0/
# or send a letter to Creative Commons, 171 Second Street,
# Suite 300, San Francisco, California, 94105, USA.
#
@diananerd
diananerd / wordlist-platzi.txt
Created February 22, 2024 21:10
Worldlist para el Curso de OWASP Top 10 en Platzi
jennyeva22
jelisa
j2341329
isaiah
iluvmark2
iluveddie1
ideias 1976
hunnibear9
hpq123
holler11
@diananerd
diananerd / dirlist.txt
Last active March 6, 2024 01:19
Small directories dictionary for DirBuster and Burp Suite
/admin
/files/
/login
/logout
/user
/profile
/secrets
/images
/covers
/api
@diananerd
diananerd / rock.txt
Created February 20, 2024 23:38
Rock.txt is a 200 words subset of rockyou.txt
123456
12345
123456789
password
iloveyou
1234567
rockyou
12345678
abc123
nicole
@diananerd
diananerd / article.js
Created September 19, 2022 21:50
Funciones para consumir el API de Airtable vía Netlify Functions - Curso de Nuxt 2 en Platzi
/* eslint-disable require-await */
/* eslint-disable no-console */
/* eslint-disable no-undef */
const Airtable = require('airtable')
const db = new Airtable({
apiKey: process.env.AIRTABLE_TOKEN,
}).base(process.env.AIRTABLE_BASE_ID)
const headers = {
@diananerd
diananerd / script.js
Created March 13, 2022 04:11
Random code generation for airtable scripting
const settings = input.config({
title: 'Randomize code value for a single field in record',
description: 'A script that lets you update a single select field',
items: [
input.config.table('table', {
label: 'Table',
}),
input.config.field('singleLineText', {
label: 'Field',
parentTable: 'table',