I hereby claim:
- I am insiderphd on github.
- I am insiderphd (https://keybase.io/insiderphd) on keybase.
- I have a public key whose fingerprint is CFD3 B6E3 1FB7 42D7 F4A9 04BA 031B 8B44 177C DCC8
To claim this, I am signing this object:
// ==UserScript== | |
// @name Neopets - Search Helper | |
// @version 1.0.27 | |
// @namespace neopets | |
// @description Adds convenient search icons to many places | |
// @author diceroll123 | |
// @match *://*.neopets.com/auctions.phtml* | |
// @match *://*.neopets.com/closet.phtml* | |
// @match *://*.neopets.com/dome/neopets.phtml* | |
// @match *://*.neopets.com/faerieland/darkfaerie.phtml* |
I hereby claim:
To claim this, I am signing this object:
import os | |
import re | |
import shutil | |
import requests | |
token = 'PASTE YOUR TOKEN HERE' | |
perpage = 50 | |
# get all the items |
<?php | |
namespace App\Http\Controllers; | |
use App\Models\Email; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Auth; | |
class EmailController extends AuthApiController | |
{ |
<style> | |
</style> | |
<div> | |
<table> | |
<tbody> | |
<tr> | |
<?php | |
echo 30/3; |
<?php | |
namespace App\Http\Controllers; | |
use App\Models\Email; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\DB; | |
class AuthApiController extends ApiController | |
{ |
# Basic Usage | |
ffuf -w wordlist.txt -u http://127.0.0.1:8000/api/FUZZ/6 -o output.txt -replay-proxy http://127.0.0.1:8080 | |
# Basic Usage With a Cookie | |
ffuf -w wordlist.txt -u http://127.0.0.1:8000/api/FUZZ/6 -o output.txt -replay-proxy http://127.0.0.1:8080 -b "laravel_session=eyJpdiI6Ii8wQU11dTVlUkg2alRHUXBIVzlGSnc9PSIsInZhbHVlIjoiOWs3YllJWTdqNC9xa1pMeFRvMFh0OE1vRFpaWm9GSzFkRktVZS9yUHBDM0lIazZ4K0NsbndxWVIxQ05VZWhqZUZaR0RGQWlFdmdDc24yWllYRklGSXI5STd2b05Pam4yRXIwV1BUWkZhUnFLNUFzOWsycmRHcnlxS0FqRWNsSnEiLCJtYWMiOiI3ZTliMmM2YzIxOTExNDE0NmVjYTYyMGI4Nzg4YzJiYjNmNjVkNDI1YzEyODYwMzY5YzczNzY3NTUwZDk0OGYzIn0%3D;" | |
# Adding a delay | |
ffuf -w wordlist.txt -u http://127.0.0.1:8000/api/FUZZ/6 -o output.txt -replay-proxy http://127.0.0.1:8080 –p 1 –t 3 | |
# Adding a delay (new method) |
FROM python:3 | |
WORKDIR /usr/src/app | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
RUN mkdir data | |
COPY . . |
# Drawing a scatter plot of raster images | |
doInstall <- TRUE # Change to FALSE if you don't want packages installed. | |
toInstall <- c("png", "devtools", "MASS", "RCurl") | |
if(doInstall){install.packages(toInstall, repos = "http://cran.r-project.org")} | |
lapply(toInstall, library, character.only = TRUE) | |
# Some helper functions, lineFinder and makeTable | |
source_gist("818983") | |
source_gist("818986") |
<h1>Katie's Maths</h1> | |
<p>Type in an equation and let me do the hard work!</p> | |
<form method="post" action="code.php"> | |
<input type="text" name="code" value="1+1"> | |
<button type="submit" name="submit">Submit</button> | |
</form> | |
<hr> | |
<h1>Results</h1> | |
<?php |