How to Know the Website’s Infrastructure Information and Identify Vulnerabilities

preview_player
Показать описание
There are a few things you should always do first when investigating any website or server, whether it's for an Open-Source Intelligence investigation or just out of interest.

Consider the tech stack, server information, page list, SSL chain, domain registrar records, etc. Each of these can generally be found easily on its own using a combination of web resources and bash commands. It takes time to gather, compile, and analyze all of this data, though.

In order to automate this process, Web Check (or web-check) finds, organizes, and displays all the information required to give your inquiry a solid foundation. It generates a complete report without any filler in a matter of seconds.

PLEASE SUBSCRIBE :)
PLEASE HIT LIKE IF IT HELPED :)

LINKS:

Steps:
# Create user
useradd -m -d /opt/web-check/ -s /bin/bash web-check

# Install requirements
apt -y install git traceroute make g++

# Install libraries
apt -y install libatk1.0-0 libatk-bridge2.0-0 libcups2 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libxkbcommon0 libpango-1.0-0 libcairo2 libasound2

apt -y install nodejs
node -v

# Install yarn
corepack enable
yarn --version

# Download web-check srouce
su - web-check

# Install web-check
cd web-check

# Install the dependencies
yarn install

# Build the app for production
yarn build

# Exit as web-check user
exit

# Create systemd

[Unit]
Description=Web Check Application

[Service]
ExecStart=/usr/bin/yarn serve
WorkingDirectory=/opt/web-check/web-check
User=web-check
Group=web-check
Restart=always

[Install]

# Start web-check
systemctl start web-check

# Access web-check

Chapters:
00:00 Intro
01:05 Create user
01:18 Install requirements
01:29 Install libraries
02:21 Install yarn
02:30 Download web-check source
02:38 Install the dependencies
02:58 Build the app for production
03:09 Create systemd
03:25 Start web-check
03:28 Access web-check
03:43 Conclusion

Drop me your feedback and comments below.

That's all for now.

If this video helped you in any way, please like share and subscribe!

Thank you!!!
Рекомендации по теме
Комментарии
Автор

thank you a lot for the video, I love using open source tools. Bring more video about open source technologies, please.

RafaelSales