Giter Site home page Giter Site logo

assqlite's Introduction

assqlite

"Backdoor to remotely hosted sqlite databases"

Notice: this is not a perfect solution, not at all. This is some kind of quick, weird workaround.

REQUIREMENTS:
Your remote server must support sqlite3

HOW TO USE:

  1. Copy contents of folder named "server" to remote host
  2. Copy your sqlite database to the same folder.
  3. In your script include client/assqlite.class.php

Full functionality was presented on index.php

Init:

require_once('client/assqlite.class.php');
$db = new assqlite("http://example.com/path_to_folder", "example.db");

Methods:
assqlite::busyTimeout(int $ms);
Set busy timeout duration, or disable busy handlers

$db->busyTimeout(1234);

assqlite::exec(string $query);
Executes a result-less query against a given database

$db->exec(" DELETE FROM `users` WHERE id > 100 ");

assqlite::query(string $query);
Executes an SQL query

$results = $db->query("SELECT * FROM `users` LIMIT 13");

assqliteResult::num_rows();
Returns number of rows;

$rows = $results->num_rows();

assqliteResult::fetchObject();
Returns result row as object

while($row = $results->fetchObject()){
  print_r($row->{'id'});
}

assqliteResult::fetchArray();
Returns result row as array

while($row = $results->fetchArray()){
	print_r($row['id']);
}

assqliteResult::data_seek(int $offset);
Move result array to declared point

$results->data_seek(10);

assqlite's People

Contributors

darxide-pl avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.