Search found 29 matches

by Haruks
Sat Jun 30, 2018 7:14 pm
Forum: Feature Requests and Wishlists
Topic: Upgrade libcurl
Replies: 3
Views: 2083

Re: Vulnerabilities with PureBasic 5.62 & libcurl

Hello infratec!
libcurl is included on the PB, it's not a "new feature", just a vulnerability fix (that is a critical fix at my point of view), as any PB app using the lib is exposed to.
I know that it can have some delay to see it updated officially.

I'm really interested on how you compiled ...
by Haruks
Sat Jun 30, 2018 6:17 am
Forum: Feature Requests and Wishlists
Topic: Upgrade libcurl
Replies: 3
Views: 2083

Upgrade libcurl

Hello!

PureBasic 5.62 for Windows comes with the libcurl.lib (version 7.42.1, released on April 2015).
But.. This version has 37 known vulnerabilities, including:
• HTTP authentication leak in redirects
• URL globbing out of bounds read
• write-out out of buffer read
• invalid URL parsing with ...
by Haruks
Tue Sep 21, 2010 1:48 pm
Forum: Windows
Topic: MS SQL 2005 - Windows authentication
Replies: 3
Views: 1492

Re: MS SQL 2005 - Windows authentication

Hello noorderling, Thanks for your reply,

did you make a connection to MSSQL using ODBC with Windows authentication?
can you post your code?

Thank you.
by Haruks
Sun Sep 19, 2010 6:15 pm
Forum: Windows
Topic: MS SQL 2005 - Windows authentication
Replies: 3
Views: 1492

MS SQL 2005 - Windows authentication

Hello all,

Have any way to connect to MSSQL server 2005/2008 using Trusted_Connection or Integrated
Security (Windows authentication)?

Best regards.
by Haruks
Sun May 23, 2010 8:24 am
Forum: Coding Questions
Topic: MS SQL Express
Replies: 3
Views: 1113

Re: MS SQL Express

ABBKlaus

Can this example do a query using a Windows authentication?

Example using the OSQL.exe (utility of MS SQL)
osql -E -S .\SQLEXPRESS -d database -Q "select * from table"

-E = the user that run the app will do the query.. without enter the user and password...

Thank you!
by Haruks
Fri May 14, 2010 4:57 am
Forum: Coding Questions
Topic: MS SQL Express
Replies: 3
Views: 1113

Re: MS SQL Express

Hello,

Where you doubt on the "DSN-TEST"?
when this code return only these 2 lines... your select in invalid...
You are configuring the QUERY? i belive that the query is on the line 286

It help you?
by Haruks
Fri May 07, 2010 2:09 am
Forum: Coding Questions
Topic: HOWTO Get file version ? [SOLVED]
Replies: 8
Views: 3531

Re: HOWTO Get file version ?

@netmaestro

Thanks! this will help me a lot!
nice example.
by Haruks
Thu May 06, 2010 11:19 pm
Forum: Coding Questions
Topic: HOWTO Get file version ? [SOLVED]
Replies: 8
Views: 3531

HOWTO Get file version ? [SOLVED]

Hi,

Have any way to get file version?
For example, get version of the file "c:\windows\notepad.exe"

Thank you.
by Haruks
Thu Dec 17, 2009 1:44 pm
Forum: Windows
Topic: Registry permissions
Replies: 4
Views: 6584

Re: Registry permissions

Thank you for this code, for this time this will be useful,
after I will try do a code for use the RegSetKeySecurity function,
if CreateThis$ = "I have success on this" : debug "I will post it here" : endif ;hehehe =)

maybe you know a good topic displaying someone learning to coding with windows ...
by Haruks
Wed Dec 16, 2009 10:10 pm
Forum: Windows
Topic: Registry permissions
Replies: 4
Views: 6584

Re: Registry permissions

Hi SFSxOI,

I am referring in manage registry permissions, for example:

The Windows Resource Kit Tools have the "SubInACL.exe" what it do?
SubInACL is a command-line tool that enables administrators to obtain security information about files, registry keys, printers and services.

A example ...
by Haruks
Wed Dec 16, 2009 1:10 am
Forum: Windows
Topic: Registry permissions
Replies: 4
Views: 6584

Registry permissions

Hello all,

I am searching a source code or a API for set/change registry permissions...
I found only how read, write, set, etc... for value.... (http://msdn.microsoft.com/en-us/library ... 85%29.aspx)
but I need this for permissions...

Can someone help me?
Thanks!
by Haruks
Fri Dec 11, 2009 1:59 pm
Forum: Coding Questions
Topic: Mac address how to get it ?
Replies: 29
Views: 12825

Re: Mac address how to get it ?

Thank you Flype!!!
by Haruks
Thu Dec 03, 2009 4:15 pm
Forum: Announcement
Topic: RunAs program with parameters!
Replies: 1
Views: 2962

Re: RunAs program with parameters!

Thank you! it's very usefull for me!!
one question: how can i run it in HIDE mode?

-Haruks
by Haruks
Fri Nov 13, 2009 3:11 am
Forum: Coding Questions
Topic: Customize the output list
Replies: 6
Views: 690

Re: Customize the output list

Hello,

I can't remove the "$" because that I need merge 2 strings before... the result is added in the list...

Only if have a way to send the a string (for example "String$" that your result is 99 for example, i.e. String$ = 99) and send this to "Example.c"

is possible send the output of a string ...
by Haruks
Tue Nov 10, 2009 6:45 am
Forum: Coding Questions
Topic: Customize the output list
Replies: 6
Views: 690

Re: Customize the output list

I am finishing my code, but i am getting a follow error on the Compiler:
"[COMPILER] Line 150: Bad parameter type, number expected instead of string."


line 150 have the code "Result$ = Chr(ID_ASCII$())" see the code affected:

ForEach ID_ASCII$()
Result$ = Chr(ID_ASCII$())
AddElement(Pass ...