Skip to content

VanHakobyan/HTTP-Protocol-Manipulation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Protocol Manipulation

The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web.

Development of HTTP was initiated by Tim Berners-Lee at CERN in 1989. Standards development of HTTP was coordinated by the Internet Engineering Task Force (IETF) and the World Wide Web Consortium (W3C), culminating in the publication of a series of Requests for Comments (RFCs). The first definition of HTTP/1.1, the version of HTTP in common use, occurred in RFC 2068 in 1997, although this was obsoleted by RFC 2616 in 1999 and then again by RFC 7230 and family in 2014.

html Extract Emails

static void Main(string[] args)
{

    var path = @"D:\text.txt";
    var link = new LinkWriter(path);
    link.linkSaver("https://mail.ru/");

    link.Dispose();//This is mandatory

    Console.WriteLine("first step");
    Thread.Sleep(2000);
    MailExtracter.ExtractEmails(@"D:\text.txt", @"D:\test.txt");
    Console.WriteLine("second step");
}

Add Gmail message sender

EmailService ES = new EmailService();
ES.ContactClient("your HACKED");