topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 4:29 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Fixing a Named Pipe to TCP Proxy program  (Read 6388 times)

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Fixing a Named Pipe to TCP Proxy program
« on: January 29, 2020, 04:47 PM »
It would be nice if someone could get the Named Pipe to TCP Proxy programs in the attached archive to work when using them to listen to and transmit a VM's Named Pipe (such as the one provided by VirtualBox). Also, it would be nice if it could have a GUI (or at least not rely on conhost.exe when being ran) and have the ability to use command line parameters for choosing which named pipe to listen for/create and what port to forward it to.

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #1 on: January 30, 2020, 07:04 AM »
I saw that some people downloaded it. Has any work been done on it yet?

publicdomain

  • Honorary Member
  • Joined in 2019
  • **
  • Posts: 732
  • Call me Vic!
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #2 on: January 30, 2020, 08:45 AM »
Hello Zero3K,

I get you have a program using named pipes inside VirtualBox and you need to have messages forwarded to a given TCP port on the host.

Is that it?
My name's Victor but do feel free to call me Vic!

Support with your DonationCredits!
❤️ Support on Patreon @ www.patreon.com/publicdomain
🎁 One-time Paypal @ www.paypal.com/paypalme/victorvls
Email/Paypal: publicdomainvicgmail.com
« Last Edit: January 30, 2020, 09:07 AM by publicdomain »

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #3 on: January 30, 2020, 08:48 AM »
Yes. I am actually using ReactOS inside Virtual PC but that shouldn't matter.

publicdomain

  • Honorary Member
  • Joined in 2019
  • **
  • Posts: 732
  • Call me Vic!
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #4 on: January 30, 2020, 09:15 AM »
Super. Looks like a straightforward/quickie one; I'm happy to do it :)

I take program's GUI being simply two text boxes, to collect named pipe + TCP port:

i.e. from
\\.\pipe\VBOX\Windows-1
to
127.0.0.1:7510



I'm making it from scratch.

Cheers!
Vic
My name's Victor but do feel free to call me Vic!

Support with your DonationCredits!
❤️ Support on Patreon @ www.patreon.com/publicdomain
🎁 One-time Paypal @ www.paypal.com/paypalme/victorvls
Email/Paypal: publicdomainvicgmail.com
« Last Edit: May 25, 2021, 08:04 PM by publicdomain »

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #5 on: January 30, 2020, 09:16 AM »
I have someone else working on it. So, you don't need to do it.

publicdomain

  • Honorary Member
  • Joined in 2019
  • **
  • Posts: 732
  • Call me Vic!
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #6 on: January 30, 2020, 09:23 AM »
I have someone else working on it. So, you don't need to do it.

Thanks for advising!

I continue coding around. If you need anything, I'm just a message away :)

Cheers!
My name's Victor but do feel free to call me Vic!

Support with your DonationCredits!
❤️ Support on Patreon @ www.patreon.com/publicdomain
🎁 One-time Paypal @ www.paypal.com/paypalme/victorvls
Email/Paypal: publicdomainvicgmail.com

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #7 on: February 01, 2020, 06:47 PM »
It is finished. You can get it at https://github.com/Z...K/Pipe2Sock/releases.

wraith808

  • Supporting Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 11,186
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #8 on: May 24, 2021, 09:11 AM »
Unfortunately, the download link doesn't work anymore (I mean pipe2sock.exe file). Can u update it?
-DawGreenwood (May 24, 2021, 08:54 AM)

I just tried downloading it from github, and it works.

https://github.com/Z...d/v1.0/Pipe2Sock.exe

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #9 on: May 24, 2021, 01:59 PM »
I now want a program that acts as a named pipe server and shows what is written to it in a console window and optionally written to a file.
« Last Edit: May 24, 2021, 02:47 PM by Zero3K »

Shades

  • Member
  • Joined in 2006
  • **
  • Posts: 2,922
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #10 on: May 24, 2021, 04:51 PM »
I now want a program that acts as a named pipe server and shows what is written to it in a console window and optionally written to a file.

Perhaps here:
https://docs.microsoft.com/en-us/windows/win32/ipc/multithreaded-pipe-server

Zero3K

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 300
    • View Profile
    • Donate to Member
Re: Fixing a Named Pipe to TCP Proxy program
« Reply #11 on: May 24, 2021, 04:58 PM »
1. Does it display the pipe's data in the console window?
2. It doesn't have the ability to optionally output to a file.