Jump to content

jss

Members
  • Posts

    15
  • Joined

  • Last visited

About jss

  • Birthday 04/03/1991

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jss's Achievements

Newbie

Newbie (1/14)

10

Reputation

  1. The US Department of Homeland Security has announced a new operation to find and prosecute owners of websites that offer illegal downloads of American films and television shows. "Operation In Our Sites" was launched in conjunction with the seizure of nine websites, accused of offering free access to movies such as "Toy Story 3". Kevin Suh from Hollywood trade group, Motion Picture Association of America, called the action the "largest takedown of illegal movie and television websites in a single action by the federal government." US Immigration and Customs and other law enforcement agencies are involved and it came a week after the White House unveiled an enforcement plan for tackling theft of intellectual property. Warrants were issued in New York to shut down seven websites: TVshack.net, Movies-Links.tv, FilesPump.com, Now-Movies.com, PlanetMoviez.com, ThePirateCity.org and ZML.com. NinjaVideo.net and NinjaThis.net were also shut down in another action. source -Illegal download crackdown some of the first websites: http://www.movies-links.tv/index.html http://tvshack.net/index.html
  2. WhiteHat Security is a always on the lookout for highly motivated and talented individuals. WhiteHat is a hard working and intelligent group with deep passion for information security and technological innovation. Our current job openings are listed below. Follow the instructions that appear on in the job details section to apply for open positions. WhiteHat Security - Website Risk Management – Website Vulnerability Management
  3. Link: -Israel Developing Switch To Make Computers 100s of Times Faster - Made in Israel - Israel News - Israel National News
  4. Consumers and mobile workers use LogMeIn solutions to access and back up their remote computers online. Users have multiple options for remote desktop control, including access from a Windows PC, laptop or Pocket PC; a Macintosh computer; their iPhone or iPad - and even from their Ford 150 truck - to maximize their mobility and productivity. Businesses and IT service providers rely on LogMeIn to remotely support, manage and back up hundreds or thousands of desktops, laptops, servers, kiosks, POS machines and the applications that run on them. Cross-platform capabilities include support for Windows PCs, Macintosh computers and smartphones, including BlackBerry, Symbian, and Windows Mobile devices. Source - https://secure.logmein.com/US/home.aspx //Jss
  5. EnCase - Wikipedia, the free encyclopedia
  6. //Jss entitle pro //Microsoft Il. Open Source Forensic Tools Open Source Windows Forensic Tools
  7. jss

    C# WebBrowser

    //Jss entitle pro //Microsoft Il. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; public class WebBrowser { [sTAThread] static void Main() { Application.EnableVisualStyles(); Application.Run(new Form1()); } } public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void webBrowser1_ProgressChanged(object sender, WebBrowserProgressChangedEventArgs e) { toolStripProgressBar1.Maximum = (int)e.MaximumProgress; toolStripProgressBar1.Value = (int) e.CurrentProgress; } private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { toolStripProgressBar1.Value = toolStripProgressBar1.Maximum; } } partial class Form1 { private void InitializeComponent() { this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); this.webBrowser1 = new System.Windows.Forms.WebBrowser(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripProgressBar1}); this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table; this.statusStrip1.Location = new System.Drawing.Point(0, 488); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(695, 22); this.statusStrip1.TabIndex = 0; this.statusStrip1.Text = "statusStrip1"; // // toolStripProgressBar1 // this.toolStripProgressBar1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText; this.toolStripProgressBar1.Name = "toolStripProgressBar1"; this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 15); this.toolStripProgressBar1.Text = "toolStripProgressBar1"; // // webBrowser1 // this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill; this.webBrowser1.Location = new System.Drawing.Point(0, 0); this.webBrowser1.Name = "webBrowser"; this.webBrowser1.Size = new System.Drawing.Size(695, 488); this.webBrowser1.Url = new System.Uri("http://www.hackersblog.org", System.UriKind.Absolute); this.webBrowser1.ProgressChanged += new System.Windows.Forms.WebBrowserProgressChangedEventHandler(this.webBrowser1_ProgressChanged); this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(695, 610); this.Controls.Add(this.webBrowser1); this.Controls.Add(this.statusStrip1); this.Name = "Form1"; this.Text = "Form1"; this.statusStrip1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; private System.Windows.Forms.WebBrowser webBrowser1; }
×
×
  • Create New...