Skip to content

Commit 9955e80

Browse files
committed
reset: clean initial release
0 parents  commit 9955e80

24 files changed

Lines changed: 2217 additions & 0 deletions

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["master"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

Img/King

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.

Img/photo_2025-09-27_20-12-43.jpg

35 KB
Loading

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 ViewTech (OFC)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# version 0.0.2
2+
# created by : Team ViewTech
3+
# date : 2025-06-05 | 08.47 WIB
4+
# developer : Xenzi & Polygon (pejuang kentang)
5+
########################################
6+
# Daftar package per OS
7+
PACKAGEBASH_TERMUX := curl python bc ncurses-utils file ossp-uuid uuid-utils less zsh boxes figlet ruby clang tree jq ripgrep coreutils xz-utils just fzf gum silversearcher-ag grep brotli toilet binutils python-pip bzip2 neofetch
8+
PACKAGEBASH_DEBIAN := curl python3 bc ncurses-bin file ossp-uuid uuid-runtime less zsh boxes figlet ruby clang tree jq ripgrep coreutils xz-utils fzf silversearcher-ag grep brotli toilet binutils python3-pip bzip2 neofetch
9+
PACKAGEBASH_UBUNTU := $(PACKAGEBASH_DEBIAN)
10+
11+
PACKAGEPY := dns-client requests bs4 rich pycryptodome rich-cli certifi npyscreen prompt_toolkit requests lzstring faker phonenumbers blessed geopy cloudscraper emoji fuzzywuzzy
12+
13+
TERMUX_PATH := /data/data/com.termux/files/usr/bin/bash
14+
PYTHON_VERSION := $(shell python -V | sed 's/[[:space:]]//g' | cut -c 1-10 | tr '[:upper:]' '[:lower:]')
15+
16+
# cek os type
17+
detectCLI:
18+
@echo "[?] Mengecek lingkungan..."
19+
@if [ -f "$(TERMUX_PATH)" ]; then \
20+
echo "[✓] Termux terdeteksi!"; \
21+
OS_TYPE="termux"; \
22+
elif [ -f "/etc/debian_version" ]; then \
23+
grep -qi ubuntu /etc/os-release && OS_TYPE="ubuntu" || OS_TYPE="debian"; \
24+
echo "[✓] $$OS_TYPE terdeteksi!"; \
25+
else \
26+
echo "[!] OS tidak didukung!"; \
27+
exit 1; \
28+
fi; \
29+
echo $$OS_TYPE > .os_type
30+
31+
# install package for bash
32+
install-system: detectCLI
33+
@echo "[?] Menginstall package dari bash..."
34+
@OS_TYPE=$$(cat .os_type); \
35+
if [ "$$OS_TYPE" = "termux" ]; then \
36+
PACKAGES="$(PACKAGEBASH_TERMUX)"; \
37+
INSTALL_CMD="pkg install -y"; \
38+
elif [ "$$OS_TYPE" = "debian" ] || [ "$$OS_TYPE" = "ubuntu" ]; then \
39+
PACKAGES="$(PACKAGEBASH_DEBIAN)"; \
40+
INSTALL_CMD="sudo apt-get install -y"; \
41+
fi; \
42+
for pkg in $$PACKAGES; do \
43+
echo "[>] Menginstall $$pkg..."; \
44+
yes|$$INSTALL_CMD $$pkg >/dev/null 2>&1; \
45+
if command -v $$pkg >/dev/null 2>&1 || dpkg -l | grep -qw $$pkg; then \
46+
echo "[✓] Berhasil menginstall $$pkg"; \
47+
else \
48+
echo "[✗] Gagal menginstall $$pkg"; \
49+
echo "[!] Jalankan manual: $$INSTALL_CMD $$pkg"; \
50+
fi; \
51+
done
52+
53+
# install package for python
54+
install-py: detectCLI
55+
@OS_TYPE=$$(cat .os_type); \
56+
if command -v python3 >/dev/null 2>&1; then \
57+
echo "[✓] Python3 ditemukan"; \
58+
echo "[>] Menginstall Python package: $(PACKAGEPY)..."; \
59+
pip3 install $(PACKAGEPY); \
60+
echo "[>] Python Berhasil DI setup"; \
61+
else \
62+
echo "[✗] Python3 tidak ditemukan! Silakan install terlebih dahulu."; \
63+
fi
64+
65+
@if ! test -d "$$HOME/.local"; then \
66+
mkdir "$$HOME/.local"; \
67+
fi
68+
69+
# UPDATE REPO
70+
update: detectCLI
71+
@echo "[>] Melakukan update ..";sleep 1
72+
@git pull
73+
74+
install: install-system install-py
75+
76+
fix:
77+
rm -rf $$PREFIX/lib/$(PYTHON_VERSION)/site-packages/requests
78+
pip uninstall requests -y
79+
pip uninstall psutil -y
80+
pip install requests
81+
pip install "urllib3<2"
82+
83+
all: install
84+
85+
.PHONY: detectCLI install-system install-py update fix install all

README.md

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
<h1 align="center"><code>Checker-Scammer</code></h1> <p align="center"> <img src="https://github.com/ViewTechOrg/Checker-Scammer/blob/master/Img/photo_2025-09-27_20-12-43.jpg" width="590"><br><br>
2+
<img src="https://img.shields.io/static/v1?label=ViewTechTeam&color=green&message=+&logo=nano&logoColor=white&style=for-the-badge">
3+
<img src="https://img.shields.io/static/v1?label=Author&color=green&message=viewTech+ORG&logo=nim&logoColor=white&style=for-the-badge"><br>
4+
<img src="https://img.shields.io/github/stars/ViewTechOrg/Checker-Scammer?logo=github&style=for-the-badge">
5+
<img src="https://img.shields.io/static/v1?label=Version&color=green&message=3.0.6&logo=Clockify&logoColor=white&style=for-the-badge"><br><br>
6+
<img src="https://img.shields.io/github/contributors/ViewTechOrg/Checker-Scammer?logo=apache&style=for-the-badge"><br>
7+
<img src="https://img.shields.io/static/v1?label=Termux&color=green&message=+&logo=Iterm2&logoColor=white&style=flat">
8+
<img src="https://img.shields.io/static/v1?label=Python&color=green&message=3.13&logo=python&logoColor=white&style=flat">
9+
<img src="https://img.shields.io/github/forks/ViewTechOrg/Checker-Scammer?logo=github&style=flat"><br>
10+
<br><br>
11+
12+
**Checker-Scammer** adalah alat Penyelidikan berbasis CLI yang memanfaatkan teknik Perhitungan berdasarkan data yang sudah di kumpulkan, berfungsi untuk mengidentifikasi sebuah nomor platform whatsapp apakah masuk golongan scammer atau seseorang yang aman sebelum memulai transaksi, di era sekarang yang serba online tidak sedikit pula aksi kejahatan seperti scammer dan penipuan banyak bermunculan, dengan adanya alat ini di harapkan dapat membantu mengatasi masalah penipuan/scam saat bertransaksi.
13+
14+
### 🔎 Data yang Didapatkan
15+
- 📍 Foto Profile.
16+
- 🧪 Informasi Umum (nomor hp dan sebagainya).
17+
- 🧾 Informasi Analisis: Dari Perhitungan algoritma untuk mengidentifikasi/investigasi Victim.
18+
- 🕵‍♂️ Informasi Lebih Dalam: Nama, Tanggal/bulan/Tahun lahir, Pendidikan, lokasi Pendidikan.
19+
- ☠ Informasi sangat dalam: Nama lengkap, lokasi terdekat, gender, detail lokasi kota dan kabupaten, dan juga infomasi lainnya yg sangat dalam.
20+
21+
### 🧩 Fitur Utama
22+
- Other Osint
23+
- SPX Tracking
24+
- Osint Name
25+
- Lookup Plat kendaraan
26+
- Searching for student and lecturer name and ID data
27+
- Lookup Details of Student and Lecturer ID
28+
- Lookup IMEI
29+
- Search for worker information via NIK/Name
30+
- BPJS Vsclaim Lookup
31+
- Analyzer Image Location
32+
- Check Rekening
33+
- Check PTK
34+
- Nik To Kk
35+
- Nik To Nomor
36+
- Nik To Email
37+
- Dump db (eklusif: new)
38+
- Search Doctor Via Name
39+
- Lookup Id Doctor
40+
- Search Guru
41+
- Osint Nomor handphone
42+
- Analisis Nomor handphone (Search)
43+
- Show Tag Victim: Added (Detail Tag)
44+
- Check Nama Ewalet (cek E-wallet)
45+
- Check Komentar pada nomor handphone
46+
- Doxing Nomor ( Doxing Nomor )
47+
- Menampilkan Informasi Lokasi terdekat, Nama lengkap, Gender, tanggal lahir, bpjs, dll
48+
49+
50+
### Penggunaan
51+
1. Gunakan Ukuran layar untuk potrait x: 101, y: 35 sedangkan landscape x: 181, y: 70, untuk cara mengatur nya bisa dengan mencubit layar.
52+
2. Jika sudah sesuai jalankan tools Sesuai Dokumentasi perintah.
53+
3. Gunakan kursor / tombol panah untuk control alat dan keyboard pada kolom input.
54+
4. Gunakan ke nomor seseorang/target yang akan bertransaksi dengan Anda.
55+
5. Selamat Anda bisa bertransaksi dengan aman (Sedia Payung Sebelum Hujan).
56+
57+
<h3>Klik tutorial</h3>
58+
<details open><summary><strong>Command & Penggunaan <code>(pemula)</code></strong></summary>
59+
60+
### 1. Install package
61+
```bash
62+
apt-get update
63+
apt-get upgrade
64+
apt-get install git make just gnupg openssl-tool -y
65+
```
66+
### 2. Clone Repositori
67+
```bash
68+
git clone https://github.com/ViewTechOrg/Checker-Scammer
69+
cd Checker-Scammer
70+
make all
71+
```
72+
### 3. perintah untuk menjalankan tools setelah setup
73+
```bash
74+
just run
75+
```
76+
77+
> jika kalian mengalami kendala error python monitoring kalian bisa menjalankan perintah di bawah ini untuk mengatasinya setelah itu jalankan kembali
78+
```bash
79+
make fix
80+
make install
81+
```
82+
83+
> di sarankan saat menjalankan perintah/command harus satu persatu
84+
</details>
85+
86+
## 📸 Screenshots
87+
88+
| 🔍 Osint Nomor | 📱 Analisis Nomor | ☠️ Doxing Nomor |
89+
|----------------|------------------|----------------|
90+
| <img src="https://raw.githubusercontent.com/ViewTechOrg/Server/main/Checker-Scammer/img/c10bd143-77bb-42ae-a6e3-baf8063b0767.png" width="250"> | <img src="https://raw.githubusercontent.com/ViewTechOrg/Server/main/Checker-Scammer/img/6f9b6f02-f4ea-4e46-8275-b0fee9bcde5b.png" width="250"> | <img src="https://raw.githubusercontent.com/ViewTechOrg/Server/main/Checker-Scammer/img/8f7e867e-b244-487c-8b92-b3a915b01e4f.png" width="250"> |
91+
92+
| 🎓 Lookup Mahasiswa/Dosen | 🎓 Search Mahasiswa/Dosen |
93+
|---------------------------|---------------------------|
94+
| <img src="https://github.com/ViewTechOrg/Server/blob/main/Checker-Scammer/img/photo_2025-09-27_08-42-01.jpg" width="300"> | <img src="https://github.com/ViewTechOrg/Server/blob/main/Checker-Scammer/img/photo_2025-09-27_08-42-09.jpg" width="300"> |
95+
96+
<br>
97+
98+
## 📦 Paket Harga
99+
100+
### 🟢 Plan Pemula (Beginner)
101+
*Cocok untuk coba-coba & penggunaan ringan*
102+
103+
| Durasi | Harga |
104+
|------------|------------|
105+
| 3 Hari | Rp 25.000 |
106+
| 1 Minggu | Rp 50.000 |
107+
| 1 Bulan | Rp 160.000 |
108+
109+
---
110+
111+
### 🚀 Plan Profesional (Expert)
112+
*Untuk penggunaan maksimal tanpa batasan*
113+
114+
| Durasi | Harga |
115+
|------------|------------|
116+
| 3 Hari | Rp 102.000 |
117+
| 1 Minggu | Rp 212.000 |
118+
| 1 Bulan | Rp 512.000 |
119+
120+
---
121+
122+
### 🔎 Perbedaan
123+
124+
| Fitur | Pemula | Expert |
125+
|--------------|--------|--------|
126+
| Akses Fitur | Terbatas | Full Akses |
127+
| Limit Harian | Kecil | Besar (Prioritas) |
128+
129+
<br>
130+
131+
<!-- <a href="https://asciinema.org/a/BSDFRt8JZ07U8ME2cF743LpGz" target="_blank"><img src="https://img.shields.io/static/v1?label=Review&color=green&message=3.0.2&logo=gojek&logoColor=white&style=flat"><br><img src="https://asciinema.org/a/BSDFRt8JZ07U8ME2cF743LpGz.svg" /></a> -->
132+
<a href="https://asciinema.org/a/744004" target="_blank"><img src="https://img.shields.io/static/v1?label=Review&color=green&message=3.0.3&logo=gojek&logoColor=white&style=flat"><br><img src="https://asciinema.org/a/744004.svg" /></a>
133+
134+
> Checker-Scammer alat investigasi Berdasarkan Data yang ada `(Sedia Payung Sebelum Hujan)`,`(gunakanlah Checker-Scammer Viewtech Maka Anda akan terhindar dari penipuan)`
135+
136+
### 📍 Keamana sistem (script)
137+
- Script ini Di lengkapi dengan keamanan Anti Mitm dan modifikasi Obfuscate dengan versi 10.
138+
139+
## ✨ Kontributor
140+
141+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
142+
<table>
143+
<tr>
144+
<td align="center"><a href="https://github.com/Bayu12345677"><img src="https://avatars.githubusercontent.com/u/86620608?v=4" width="100px;" alt=""/><br /><sub><b>Bayu12345677</b </sub></a><br />💻 📢 🎨</td>
145+
<!-- Tambahan kontributor lainnya -->
146+
<td align="center"><a href="https://github.com/Xenzi-XN1"><img src="https://avatars.githubusercontent.com/u/82303963?v=4" width="100px;" alt=""/><br /><sub><b>Xenzi</b </sub></a><br />💻 🎨</td>
147+
<td align="center"><a href="https://github.com/Dra-Ganzz"><img src="https://avatars.githubusercontent.com/u/173580864?v=4" width="100px;" alt=""/><br /><sub><b>Vindra</b </sub></a><br />💻 🎨</td>
148+
<td align="center"><a href="https://github.com/fahadsyihab06"><img src="https://avatars.githubusercontent.com/u/133946867?v=4" width="100px;" alt=""/><br /><sub><b>TC20</b </sub></a><br />💻 🎨</td>
149+
<td align="center"><a href="https://github.com/Cyber404119"><img src="https://avatars.githubusercontent.com/u/192098761?v=4" width="100px;" alt=""/><br /><sub><b>Tony</b </sub></a><br />💻 🎨</td>
150+
</tr>
151+
</table>
152+
<!-- ALL-CONTRIBUTORS-LIST:END -->
153+
154+
## SOSIAL MEDIA
155+
<div>
156+
<a href="https://vm.tiktok.com/ZSr3aQB1W/" target="_blank">
157+
<img src="https://img.shields.io/badge/TikTok-000000?style=for-the-badge&logo=tiktok&logoColor=white" alt="TikTok">
158+
</a>
159+
160+
<a href="https://www.youtube.com/@ViewTech_Or" target="_blank">
161+
<img src="https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white" alt="YouTube">
162+
</a>
163+
164+
<a href="https://www.instagram.com/viewtech4484/" target="_blank">
165+
<img src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white" alt="Instagram">
166+
</a><br>
167+
</div>
168+
169+
> Copyright C ViewTech Team 2025

0 commit comments

Comments
 (0)