messy security notes
  • security is an illision
  • Useful Blog Links
  • Windows
    • ad-101
    • MS17-010
    • SMB
    • Post Exploitation Tricks
    • DCOM/RPC
    • Basic Commands
    • SMB Enumeration
  • Linux
    • SUID Set Edilmiş servicectl Abuse Etme
    • sudoers dosyası bozulursa?
    • SSH Welcome Message and Banner
    • pkexec ve pkttyagent
    • vipw , vigr , visudo
    • IP Forwarding
    • İki NIC Arasında Port Yönlendirme
    • tasksel
    • LAMP
    • Find All SUID Bit
    • Linux Operatorler
    • IFS
    • Ssh Public Key Tricks
    • Local & Remote Port Forwarding
    • Linux Priv Esc
    • Static IP
  • POST EXPLOITATION
    • from external network to domain admin
    • post exp 2
  • OSCP
  • Temel Komutlar ve Araçlar
  • Zayıf Servisler
  • Örnek Bir Senaryo
  • Parola Saldırıları
  • ms17-010 python exploit
  • Full Interactive Shell
  • Notes*
  • Apache James Server 2.3.2 Exploit
  • windows exploit suggester
  • FreeBsd and Some PHP tricks
  • fundamental blog
  • Metasoloit & Meterpreter & msfvenom
  • at-tftp server 1.9
  • Tunneling and Forwarding
  • Common Exploits
  • Windows Servisler
  • Execute process as another user
  • Teorik
    • Authentication and Authorization
    • Kullanıcı Hesap Türleri ve Hakları
    • Kerberos
  • SYSTEM
    • Apache2
    • Bind9 Log
    • apache - basic auth - proxy
  • Buffer Overflow - BOF
    • BOF - Stack Based
    • BoF Links
  • BASH SCRIPTING
    • Samples
  • keepnote
  • Docker
    • Docker
  • Misc
    • 50-cloud-init.yaml
Powered by GitBook
On this page

Was this helpful?

  1. Linux

LAMP

Installing LAMP

  1. apt update

  2. apt install lamp-server^

  3. apt install phpmyadmin -y

  4. mysql -u root -p

  5. CREATE USER 'dba'@'%' IDENTIFIED BY 'toor';

  6. GRANT ALL PRIVILEGES ON *.* TO 'dba'@'%' WITH GRANT OPTION;

** tasksel yüklü olmalı. lamp-server sonunda bulunan şapka işareti tasksell manasına gelir.

manuel

sudo apt-get update
sudo apt-get upgrade -y

sudo apt-get install apache2 -y
sudo a2enmod rewrite
sudo service apache2 restart
	
sudo apt-get install php libapache2-mod-php -y

sudo apt-get install mariadb-server mariadb-client php-mysql -y
sudo service apache2 restart

sudo apt-get install phpmyadmin -y

(phpmyadmin user: phpmyadmin - pass: you selected during installation)
PrevioustaskselNextFind All SUID Bit

Last updated 5 years ago

Was this helpful?