Skip to content

Instantly share code, notes, and snippets.

@malsiv
malsiv / list_of_p2p_file_sharing.md
Created March 16, 2025 09:47 — forked from SMUsamaShah/list_of_p2p_file_sharing.md
List of P2P file sharing tools

Browser Based

  1. Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
  2. ToffeeShare https://toffeeshare.com/
  3. FilePizza https://file.pizza/
  4. ShareDrop sharedrop.io https://github.com/szimek/sharedrop (SOLD, not recommended, use one of the forks)
    1. A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop (SOLD, not recommended, use one of the forks)
      1. A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
  5. Instant.io https://instant.io/
  6. FileTC https://file.tc/
@malsiv
malsiv / snippet_csharp
Created September 28, 2018 08:10
[List all the services on the remote machine] List all the services on the remote machine #Csharp
using System.ServiceProcess;
public class SvcMgr
{
public static void Main( string[] args )
{
ServiceController[] services = ServiceController.GetServices( "srv2" );
foreach( ServiceController service in services )
{
Console.WriteLine(string.Format( "{0} [ {1} ]", service.ServiceName, service.Status.ToString() ) );