-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsysteminfo.bat
116 lines (113 loc) · 2.65 KB
/
systeminfo.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@echo off
cls
color 4
@echo.
@echo.
@echo "o=====ooooooo=ooooooooooo=="
@echo "===========+==============="
@echo "=====....................+o"
@echo "===o: :=:..+===========. +o"
@echo "====..=o+. ~+oo====oo+ ~=="
@echo "===: ~oo==+. ~+====oo~ +o="
@echo "===. =oo=o=+. .====o+ .==="
@echo "=o+ ~oo=+:. .:=oo===: :==="
@echo "oo. +=:. .:~~:~~+oo=..===="
@echo "o+ .=+..~+==.....:==: :o==="
@echo "o+....................=o==="
@echo "oo=============+====+=o===="
@echo "o==o=ooooooo====oooo======="
@echo ""
@echo "Github:github.com/suchsoak"
@echo "BY:suchsoak"
@echo.
timeout /t 6 >null
wmic OS get name
ver
@echo.
date /t
@echo.
@echo Hours: %time%
@echo.
@echo --------------------
@echo.
@echo [!] Location:
timeout /t 2 > null
@echo.
@echo IP:
@echo.
curl -s ipinfo.io | findstr "ip"
curl -s ipinfo.io | findstr "country"
curl -s ipinfo.io | findstr "region"
curl -s ipinfo.io | findstr "postal"
curl -s ipinfo.io | findstr "city"
curl -s ipinfo.io | findstr "hostname"
curl -s ipinfo.io | findstr "loc"
curl -s ipinfo.io | findstr "org"
@echo.
@echo [!] Additional info:
@echo.
color 1
@echo [*] Serial: %PROGRAMFILES%
@echo [*] Machine: %computername%
@echo [*] User: %username%
@echo [*] Operating System: %OS%
@echo [*] Folder: %SYSTEMROOT&
timeout /t 6 > null
@echo.
@echo --------------------
@echo.
@echo [!] Processor info:
color 5
timeout /t 6 > null
@echo.
wmic CPU get name
@echo.
@echo [*] Architecture: %PROCESSOR_ARCHITECTURE%
@echo [*] Processor: %PROCESSOR_IDENTIFIER%
@echo [*] Version: %PROCESSOR_REVISION%
@echo [*] Cores: %NUMBER_OF_PROCESSORS%
@echo.
@echo --------------------
@echo.
@echo [!] Disk info:
color 6
timeout /t 5 > null
@echo.
wmic diskdrive list brief
@echo --------------------
@echo.
@echo [!] Video Card info:
color 7
timeout /t 5 > null
@echo.
wmic path win32_VideoController get name
wmic path win32_VideoController get name, adapterram, driverversion
@echo.
@echo --------------------
@echo.
color 9
timeout /t 5 > null
@echo [!] Motherboard info:
@echo.
color 2
timeout /t 2 > null
wmic BIOS get name
wmic bios get ReleaseDate
wmic baseboard get product
@echo.
@echo --------------------
@echo.
@echo [!] Network info:
@echo.
timeout /t 6 > null
color 8
netsh interface ipv4 show addresses "Wi-Fi" | findstr "IP Address"
netsh wlan show profiles name="Interface" key=clear | findstr "SSID Name"
netsh wlan show profiles name="Interface" key=clear | findstr "Key Content"
netsh wlan show interfaces | findstr "Profile"
netsh wlan show interfaces | findstr "State"
netsh wlan show interfaces | findstr "Signal"
netsh wlan show interfaces | findstr "Channel"
netsh wlan show interfaces | findstr "Description"
netsh wlan show interfaces | findstr "BSSID"
color 7