Skip to content

Instantly share code, notes, and snippets.

View chattybot0's full-sized avatar

Martia Foroud chattybot0

View GitHub Profile
@chattybot0
chattybot0 / inject.js
Created November 23, 2020 17:12
Inject scripts into webpage
var script = document.createElement('script');
script.id = "injframework";
script.appendChild(document.createTextNode(`
console.rawLogs = "";
console.rawLog = function(){
return console.rawLogs;
}
@chattybot0
chattybot0 / framework.js
Last active November 15, 2020 09:27
framework.js - The InjectFramework for Injector
var ultraLogs = "Begin ultraLogs - Made by Mforoud86";
var test = "InjectFramework is successfully injected and running.";
console.defaultLog = console.log.bind(console);
console.logs = [];
console.log = function(){
console.defaultLog.apply(console, arguments);
console.logs.push(Array.from(arguments));
ultraLogs += "\n- " + Array.from(arguments);
}
@chattybot0
chattybot0 / README.md
Last active November 2, 2020 10:27
Jitsi docker installation

Install jitsi meet docker server on your centos server.

just run this command:

rm -f jitsi.sh;wget https://gist.githubusercontent.com/chattybot0/f8c0e01e4334c67f796c8ab189aa15d7/raw/4cf72e6c8284c0f9ad8568a8aba4c79e925a41c6/jitsi.sh;chmod +x jitsi.sh; ./jitsi.sh;
@chattybot0
chattybot0 / README.md
Last active November 2, 2020 07:08
Install WebEx on centos 7 64-bit

WebEx installer script for centos 7 64-bit

To install, run this command in your system:

rm -f webex.sh;wget https://gist.githubusercontent.com/chattybot0/c1386c68644c5af3999ae5c3be1cfc92/raw/d3e72b2a8fb6659353fd0f45a6f388ee8852bb7b/webex.sh;chmod +x webex.sh; ./webex.sh;

Note: this script is still in beta and may have errors, im working on it.

By Mforoud86 ( this is my alt i use for one of my projects )