Mira
have a great day y'all
What do you think? If a man has a hundred sheep, and one of them has gone astray, does he not leave the ninety-nine on the mountains and go in search of the one that went astray?
Matthew 18:12 (ESV)
❤16
as someone who spends a lot of time on the internet searching for specific files, i heavily rely on google dorks. so i stumbled up on dork-gpt the other day, but the ads were a turn-off. so i made my own. site link:
- https://dork-generator-two.vercel.app/
Features:
- Customizable Dork Builder: rich predefined operators to quickly create complex queries
- Prebuilt Dorks Library: access a growing list of prebuilt dorks
- AI Powered Dork Generator: create a dork from a prompt
[GitHub Repo]
#MyProjects #DorkGenerator #Pentest
- https://dork-generator-two.vercel.app/
Features:
- Customizable Dork Builder: rich predefined operators to quickly create complex queries
- Prebuilt Dorks Library: access a growing list of prebuilt dorks
- AI Powered Dork Generator: create a dork from a prompt
[GitHub Repo]
#MyProjects #DorkGenerator #Pentest
5🔥22❤4
hello chat
someone shared their OSCP study materials with me and I thought it would be helpful to share them with you too. it basically contains a bunch of resources that can assist you in studying OSCP concepts. some of the files might be outdated and i could have handpicked them, but would be better if you decide which files you need. you might find a thing or two useful. plus, summer is already here and make the most out of it :)
access:
https://t.me/mira_files/111?single
someone shared their OSCP study materials with me and I thought it would be helpful to share them with you too. it basically contains a bunch of resources that can assist you in studying OSCP concepts. some of the files might be outdated and i could have handpicked them, but would be better if you decide which files you need. you might find a thing or two useful. plus, summer is already here and make the most out of it :)
access:
https://t.me/mira_files/111?single
❤6🔥3🥰2
Claude_4_System_Prompt.txt
8.5 KB
This is the so-called leaked system prompt for Claude 4
Mira
wait vx-underground just got deleted ?
damn
bros last post was a meme on elon's new XChat app
bros last post was a meme on elon's new XChat app
😭9
these were my scripts and deps (will probably drop the fully polished starter)
"scripts": {
"dev": "concurrently --kill-others \"vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "cross-env DEV_ENV=true electron .",
"build": "vite build",
"preview": "vite preview",
"package": "npm run build && electron-forge package",
"make": "npm run build && electron-forge make"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-rpm": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.0",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^34.0.1",
"electron-reload": "2.0.0-alpha.1",
"svelte": "^5.19.5",
"tailwindcss": "^4.0.0",
"vite": "^6.0.11"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1"
}an easy fix to ensure electron only loads the page after the vite dev server is ready (avoids that white blank page at first)
// main.js
function waitForViteServer(url, cb) {
const tryConnect = () => {
http.get(url, () => cb()).on('error', () => setTimeout(tryConnect, 300));
};
tryConnect();
}
const createWindow = () => {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
},
});
if (isDevEnvironment) {
waitForViteServer('http://localhost:5173', () => {
mainWindow.loadURL('http://localhost:5173/');
log('Electron running in dev mode');
});
} else {
mainWindow.loadFile(path.join(__dirname, 'build', 'index.html'));
log('Electron running in prod mode');
}
};