Tuesday, May 8, 2018

sqlmap -u

To scan a URL, we use the following command:
        sqlmap -u "http://testphp.vulnweb.com/artists.php?artist=1"
Once a SQL has been detected, we can choose yes (Y) to skip other types of payloads:

Once SQL has been detected, we can list the database names using the --dbs flag:

We have the databases now; similarly, we can use flags such as --tables and --columns to get table names and column names:

To check whether the user is a database administrator, we can use the --is-dba flag:

The sqlmap command has a lot of flags. We can use the following table to see the different types of flags and what they do:
  1. The sqlmap command has a lot of flags. We can use the following table to see the different types of flags and what they do:
Flag
Operation
--tables
Dumps all table names
-T
Specifies a table name to perform an operation on
--os-cmd
Executes an operating system command
--os-shell
Prompts a command shell to the system
-r
Specifies a filename to run the SQL test on
--dump-all
Dumps everything
--tamper
Uses a tamper script
--eta
Shows estimated time remaining to dump data
--dbs=MYSql,MSSQL,Oracle
We can manually choose a database and perform injection for specific database types only
--proxy
Specifies a proxy

desktop-base mate-desktop-environment

How to do it...

To configure the Mate environment follow the given steps:


We start by using the following command to install the Mate environment:

        apt-get install desktop-base mate-desktop-environment

The following screenshot shows the preceding command:



Type Y when it asks for confirmation on additional space requirements.

When installation is complete we will use the following command to set Mate as our default environment:

        update-alternatives --config x-session-manager

Choose the option mate-session (in our case 2) and press the Enter key:


Log out and log in again or restart and we will see the Mate environment:

The browser Hacker's Handbook -


Dilbert - Token Ring


When Words are Wind

https://www.youtube.com/watch?v=Kcj4dj4lX84


- Netanel Goldberg ‖ Estas Tonne ‖ Joseph Pepe Danza ‖ Mitsch Kohn

Sunday, May 6, 2018

Williamsburg - 05/05/2018



Plato quotes (showing 1-30 of 1,012)
  • “Be kind, for everyone you meet is fighting a harder battle.” ...
  • “Every heart sings a song, incomplete, until another heart whispers back...


Memories from a city that feed my mind with good friends and memorable plateaus.

myArray.push and splice

// JavaScript Document

// Creating an array
var myArray = ["Doug", "Mike", "Janet", "Matt"];
console.log(myArray);

// Adding an item to the array
myArray.push("Pat");
console.log(myArray);

// Changing an item in the array
myArray[0] = "Tim";
console.log(myArray);

// Removing items from an array
myArray.splice(1,2);
console.log(myArray);

for loop - JavaScript - myArray.length

var myArray = ["Doug", "Laura", "Vera", "Gabriela"];

for (var i =0; i < myArray.length; i++)

{
     console.log("Hello, " + myArray[i]);

//looping through an array with a for each loop
not so common and it doesn't provide a lot of granularity during the construction

for (var element of myArray)

     console.log("Good bye, " + element);
}
  

Rise of blockchain C2 - Zscaler

  SecOps Weekly: 4 new threats and the rise of blockchain C2 - YouTube