QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: bplus on May 22, 2021, 03:47:28 pm

Title: Quick Question about identifying exes compiled with QB64
Post by: bplus on May 22, 2021, 03:47:28 pm
Is it possible to tell a compiled QB64 exe from other exe's say for instance FB?

If so, then my follow up question is how?
Title: Re: Quick Question about identifying exes compiled with QB64
Post by: FellippeHeitor on May 22, 2021, 04:12:12 pm
Yes. Open the EXE in a text/hex editor and look for "qb64.org" - turns out that the way _connectionaddress$ works is by pinging our servers, so if a user ever adds such command to their program, that will happen. Since the tcp commands are not a separate library, they are included in any exe QB64 outputs.
Title: Re: Quick Question about identifying exes compiled with QB64
Post by: FellippeHeitor on May 22, 2021, 04:14:37 pm
For reference: https://www.qb64.org/portal/compiler-privacy/
Title: Re: Quick Question about identifying exes compiled with QB64
Post by: bplus on May 22, 2021, 04:41:12 pm
Oh my,

Thanks Fellippe
Title: Re: Quick Question about identifying exes compiled with QB64
Post by: bplus on May 22, 2021, 04:54:49 pm
"qb64.exe" is also in there, I am finding just before "qb64.org". BTW just need Notepad to find it.