Author Topic: Quick Question about identifying exes compiled with QB64  (Read 2604 times)

0 Members and 1 Guest are viewing this topic.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
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?
« Last Edit: May 22, 2021, 04:09:45 pm by odin »

FellippeHeitor

  • Guest
Re: Quick Question about identifying exes compiled with QB64
« Reply #1 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.

FellippeHeitor

  • Guest

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Quick Question about identifying exes compiled with QB64
« Reply #3 on: May 22, 2021, 04:41:12 pm »
Oh my,

Thanks Fellippe

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Quick Question about identifying exes compiled with QB64
« Reply #4 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.