Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
// ==UserScript== // @name Be The Imposter // @version 4.20 // @author SKYNET // @include https://gremlins-api.reddit.com/* // @grant GM_setValue // @grant GM_getValue // @grant GM_addValueChangeListener // ==/UserScript== const VERSION = "1.3"; const SUBMIT_ABRA_URL = "https://librarian.abra.me/submit"; const SUBMIT_SPACESCIENCE_URL = "https://spacescience.tech/api.php"; const DETECTOR_URL = "https://detector.abra.me/?"; const ABRA_URL = "https://librarian.abra.me/check"; const SPACESCIENCE_URL = "https://spacescience.tech/check.php?id="; const OCEAN_URL = "https://wave.ocean.rip/answers/answer?text="; async function checkBackronym(msg) { return msg.split(" ").map(x => x.charAt(0)).join("").startsWith("human"); } async function checkExistingAbra(msgs) { var myHeaders = new Headers(); myHeaders.append("Content-Type", "application/json"); let raw = JSON.stringify({"texts": msgs}); let requestOptions = { method: 'POST', headers: myHeaders, body: raw, redirect: 'follow' }; let json = await fetch(ABRA_URL, requestOptions) .then(response => response.json()); return json.results; } async function checkExistingSpacescience(id, strict=true) { let requestOptions = { method: 'GET', redirect: 'follow' }; let json = await fetch(SPACESCIENCE_URL+id, requestOptions) .then(response => response.json()); console.log(json); for (let key in json) { if (json[key].hasOwnProperty("flag")) { if (json[key].flag == 1 && json[key].result === "LOSE") { return "known human"; } else if (!strict && json[key].flag == 1 && json[key].result === "LOSE") { return "known human;" } } } return "unknown"; } async function checkExistingOcean(msg) { let requestOptions = { method: 'GET', redirect: 'follow' }; let json = await fetch(OCEAN_URL+msg, requestOptions) .then(response => response.json()); console.log(json); if (json.status=200) { if (json.answer.is_correct) { return "known fake"; } else { return "known human"; } } return "unknown"; } async function checkDetector(msg) { let requestOptions = { method: 'GET', redirect: 'follow' }; let json = await fetch(DETECTOR_URL + msg, requestOptions) .then(response => response.json()); return json.fake_probability; } function setState(note, hint, state) { if (state === "") { return; } // State conflict if (hint.hasAttribute("state") && hint.getAttribute("state") !== state) { state = "conflict"; } if (state === "human") { note.setAttribute("style", "background-color: green;"); } else if (state === "bot") { note.setAttribute("style", "background-color: darkred;"); // State conflict } else { note.setAttribute("style", "background-color: orange;"); hint.textContent("Database conflict!"); } hint.setAttribute("state", state); } function setHint(note, text, state="", overwriteable=false) { let hint = note.getElementsByClassName("doorman-hint")[0]; // Hint tag does not already exist if (!hint) { hint = document.createElement("i"); hint.setAttribute("class", "doorman-hint"); // Set overwriteable attribute so we can check later if (overwriteable) { hint.setAttribute("overwriteable", ""); } setState(note, hint, state); note.appendChild(hint); hint.textContent = text; // Only overwrite if previously set as overwriteable } else if (hint.hasAttribute("overwriteable")) { hint.textContent = text; setState(note, hint, state); } /*// Add to message } else { let regex = /\(.*\)/ hint.textContent = `(${regex.exec(hint.textContent)}, ${text})`; setState(note, hint, state); }*/ } function getAnswers() { var notes = document.getElementsByTagName("gremlin-note"); if (notes) { var answers = []; for (let note of notes) { let id = note.getAttribute("id"); let msg = note.getAttribute("aria-label").substr(19); answers.push({id: id, msg: msg}); } return answers; } } async function processAnswers(answers) { let notes = document.getElementsByTagName("gremlin-note"); if (notes.length > 0) { let abra = await checkExistingAbra(Object.values(answers.map(x => x.msg))) .catch(error => console.log('error', error)); let promises = []; for (let i = 0; i < notes.length; i++) { // Handle results from own db if (abra[i] !== "unknown") { promises.append(handleExisting(notes[i], abra[i], "abra.me, own db")); } // Check if the message is a backronym promises.push(checkBackronym(answers[i].msg) .then(handleExisting(notes[i], "", "spells HUMAN"))); // Check spacescience.tech promises.push(checkExistingSpacescience(answers[i].id, false) .then(result => handleExisting(notes[i], result, "spacescience.tech"))); // Check ocean.rip promises.push(checkExistingOcean(answers[i].msg) .then(result => handleExisting(notes[i], result, "ocean.rip"))); } // Wait until all requests have been handled await Promise.all(promises.map(p => p.catch(e => e))) .catch(e => console.log(e)); let bot_answers = []; let unknown_answers = []; let conflicts = false; for (let note of notes) { // If note hint is not set let hint = note.getElementsByClassName("doorman-hint")[0]; if (!hint) { unknown_answers.push(note); } else if (hint.getAttribute("state") === "human") { bot_answers.push(note); } else if (hint.getAttribute("state") === "conflict") { conflicts = true; } } console.log(unknown_answers.length + " unknown answers left."); // Autoclicker if (GM_getValue("autoclick", false) && !conflicts) { // Click known bot answer if (bot_answers.length > 0) { let human = Math.floor(Math.random() * bot_answers.length) bot_answers[human].click(); return; // Click unknown answer } else if (unknown_answers.length == 1) { unknown_answers[0].click(); return; } } // Only check detector when there's more than one unknown answer left if (unknown_answers.length > 1){ // Check detector for (let i = 0; i < notes.length; i++) { if (unknown_answers.includes(notes[i])) { checkDetector(answers[i].msg) .catch(error => console.log('error', error)) .then(percentage => setHint(notes[i], Math.round(Number(percentage)*100)+"% bot", "", true)); } } } } } async function handleExisting(note, result, source) { if (result === "known fake") { setHint(note, result + " (" + source + ")", "bot"); } else if (result === "known human") { setHint(note, result + " (" + source + ")", "human"); } } function submitResults() { var notes = document.getElementsByTagName("gremlin-note"); if (notes) { let chosen_text = ""; let result = ""; let answers = []; for (let note of notes) { let state = note.getAttribute("state"); let id = note.getAttribute("id"); let text_regex = /^\s*(.*)\n/ let text = text_regex.exec(note.innerHTML)[1]; answers.push({id: id, msg: text}); if (state !== "none") { // Selected answer chosen_text = text; result = state === "correct" ? "WIN" : "LOSE"; } } // Kick off submission in parallel, we don't care about the responses. submitResultsAbra(chosen_text, result, answers.map(x => x.msg)); submitResultsSpacescience(chosen_text, result, answers.map(x => [x.id, x.msg])); } } async function submitResultsAbra(chosen_text, result, option_texts) { var myHeaders = new Headers(); myHeaders.append("Content-Type", "application/json"); var raw = JSON.stringify({"chosen_text": chosen_text, option_texts, "result": result}); var requestOptions = { method: 'POST', headers: myHeaders, body: raw, redirect: 'follow' }; console.log("Submitting results"); fetch(SUBMIT_ABRA_URL, requestOptions) .then(response => response.text()) .then(result => console.log(result)) .catch(error => console.log('error', error)); } async function submitResultsSpacescience(answer, result, options) { let room = {"options": options}; let body = new FormData(); body.append("answer", answer); body.append("result", result); body.append("room", JSON.stringify(room)); let res = await (await fetch(SUBMIT_SPACESCIENCE_URL, { method: "post", body })).text(); return JSON.parse(res); } function handleGremlinAction(e) { const type = e.detail.type; switch (type) { case "begin": console.log("begin"); break; case "link": if (!window.location.href.startsWith("https://gremlins-api.reddit.com/results")) { // We have to wait a bit for reddit to get the results but after 300ms they redirect us console.log("Submitting results in 250ms"); setTimeout(submitResults, 250); } break; default: console.log("default"); } } async function addMenu(app) { let html = ` <p style="float: right; margin-top: 0;">Skynet ${VERSION}</p> <input type="checkbox" id="doorman-autoclick"> <label for="doorman-autoclick">Enable human disintegrator</label> ` let div = document.createElement("div"); div.setAttribute("id", "doorman-options"); div.innerHTML = html; app.appendChild(div); let checkbox = document.getElementById("doorman-autoclick"); checkbox.checked = GM_getValue("autoclick", false); checkbox.addEventListener("change", function () { GM_setValue("autoclick", this.checked); }); } function run() { var app = document.getElementsByTagName("gremlin-app")[0]; if (app) { addMenu(app); var answers = getAnswers(); console.log(answers); processAnswers(answers); app.addEventListener("gremlin-action", handleGremlinAction); // Autoclick "Keep Going!" if we're on the results page if (window.location.href.startsWith("https://gremlins-api.reddit.com/results")) { if (GM_getValue("autoclick", false)) { for (let a of app.getElementsByTagName("a")) { if (a.textContent === "Keep Going!") { a.click(); } } } } } } (function() { setTimeout(run, 100); })();
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
SM Sketch
12 hours ago | 1.68 KB
Trajets ETS 2 EvLan4
21 hours ago | 0.32 KB
B7800 HYLK session 1985
1 day ago | 2.25 KB
me
1 day ago | 0.06 KB
FED RESPONSE TEMPLATES: FED HTML Review Feedb...
2 days ago | 0.82 KB
disable email per category (not fully tested)
2 days ago | 0.82 KB
Neuromancer — The Construct Cut (Complete Una...
2 days ago | 3.30 KB
GLUC6
2 days ago | 1.56 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!