
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
github.com/saiashish9/instagram-api-clone-by-sai
Advanced tools
go run main.go
curl http://localhost:9000
ngrok http 9000
\l \d \du \c \q
sudo -u postgres psql
sudo -u postgres createdb instagram
\c instagram
create table status(
ID serial primary key,
NAME text not null,
URL text not null
);
\d status
grant all privileges on database instagram to saiashish;
host : localhost
port : 5432
username : saiashish
password: saiashish
database: instagram
insert into status(name,url) values('Sarthak','https://cdn.pixabay.com/photo/2016/08/24/23/08/cristiano-ronaldo-1618341__340.jpg');
TABLE status;
SELECT current_database();
\d
\d status
TABLE status;
select * from status order by id desc limit 3;
\q
create table posts(
ID serial primary key,
NAME text not null,
URL text not null,
PROFILE_URL text not null,
TITLE text not null,
DESCRIPTION text not null,
COMMENTS_COUNT text not null,
TIME text not null
);
sudo -u postgres psql
\c instagram
\d status
alter table status add msg text ;
instagram=# create table media(
ID serial primary key,
url text,
is_video int,
is_gallery int DEFAULT 0);
alter table media alter column is_video set default 0 ;
create table suggestions(
instagram(# id serial primary key,
instagram(# image text,
instagram(# title text,
instagram(# desc1 text,
instagram(# desc2 text);
instagram=# alter table status add statusImg text;
ALTER TABLE
instagram=# alter table status add statusVideo text;
ALTER TABLE
instagram=# alter table status add statusMsg text;
ALTER TABLE
instagram=# alter table status add time text;
ALTER TABLE
instagram=# alter table status add colors text;
ALTER TABLE
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.