Skip to content

Instantly share code, notes, and snippets.

View meta-ks's full-sized avatar
🍏

k0s meta-ks

🍏
View GitHub Profile
@meta-ks
meta-ks / GoogleDorking.md
Created May 3, 2024 03:36 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@meta-ks
meta-ks / Bulk_Withdraw_LinkedIn_Invitations_2025.js
Created January 5, 2025 08:38
This script automates withdrawing all pending LinkedIn invitations. Run it in your browser console on the "Manage Invitations" page. Change the timeout if required. Works as on Jan 5, 2025
(async () => {
const liElements = document.querySelectorAll('.artdeco-list.mn-invitation-list li');
const total = liElements.length;
for (let idx = 0; idx < total; idx++) {
console.log(`Withdrawing ${idx + 1}/${total}...`);
const li = liElements[idx];
const withdrawButton = li.querySelector('button'); // Initial "Withdraw" button
@meta-ks
meta-ks / extract_teams_transcripts.js
Created May 12, 2025 05:11
Extract teams meeting transcript from browser console. Works as on May, 2025
// Function to extract transcript
function extractTranscript() {
// Get all list cells that contain transcript entries
const listCells = document.querySelectorAll('.ms-List-cell');
let transcript = '';
// Iterate through each list cell
listCells.forEach((cell, index) => {
// Get speaker name if it exists
const speakerEl = cell.querySelector('[class*="itemDisplayName-"]');