? Windows & Linux Setup (Hosting Pages Locally)

Mutt

Professional
Messages
1,057
Reputation
7
Reaction score
597
Points
113
? Windows Setup (Hosting Pages Locally)

First of all download XAMPP from here:

After download install the exe file until you are at the "SELECT COMPONENTS" part....

Choose:
- Server
- Apache
- MySQL
- Program Languages
- phpMyAdmin
- Fake Sendmail

The default installation folder is C:\xampp

Finally click on "Finish"

For the scampage you need to start Apache, then click on Explorer

In your browser type for example:
Code:
localhost/dashboard

If you see the default "Welcome to XAMPP for Windows....", you've successfully installed XMAPP.

After you have your scampage in compressed fileformat, headover to C:\xampp\htdocs\ here you extract you scampages and open them for example with:
Code:
localhost/xwanted/

If everything works fine, you can see the following picture how it looks like

photo_2021-06-05_19-17-47.jpg


? Linux Setup (Hosting Pages Locally)

For linux you just need apache2 and php.
Code:
sudo apt install apache2 apache2-dev php php-curl -y

The default localhost path is /var/www/html/.

To start apache2:
Code:
sudo service apache2 start

Then head over to /var/www/html/ and unzip here your scampage.

Make sure the scampage has the correct permission:
Code:
su www-data

chown www-data:www-data -R /var/www/html

Finally open your webbrowser and type following domain:
127.0.0.1/xwanted (depends where you extracted the folder)

photo_2021-06-05_19-42-59.jpg


? APP
App contains the scampage process like the bank page, mail login, 3d verification etc.

? LIB
Lib contains the libraries like CSS, JavaScripts, Fonts and Images.

❗️EXTRA
Extra has two subfolders and contains the settings file "mine.php" and the default functions file "algo.php"

?? LANGUAGES
Languages has the different browser languages. Supported are : ??, ??, ???????, ??, ??, ??, ??, ??

? STOCKERS
Contains all steps from the inputs which will be saved, mailed and uploaded (DL).

? NEWS
News has just some text-files, which contains some random text.

? PREVENTS
Contains antibots.

☑️ PROOF
Here will the uploaded images (driver license, passports etc) land.

⚙️ Configuration File:
xwanted/extra/mine.php

photo_2021-06-05_19-50-20.jpg


As we can see here we have a good explanation

If you changed the values to "no" then you DISABLE ⛔️ the setting. If you change to "yes" then you ENABLE ✅ the setting.

There are some string settings like:
▪️redirectlink (Redirects victim (but i didn't saw any use of this so keep this))
▪️API_KEY (Is just a variable(Also found no use of it so rename or keep it))
▪️scamname (This is the value which will be shown at result like : =========== <[ ? @Mutt ? - B A N K INF0 ]> ===========\r\n";)
▪️filename (Filename of results , i keept it to results)
▪️yours (Here you put your email for receiving results, change sendtoemail to "yes")
▪️ip_protection_api (Here you put if you want the API of IPquality, if you want IP protection then enable ip_protection but you need API for this!)

You can edit the settings file also on a cpanel with the editor.
 
Top