Jump to content

AutoIt v 3.3.12.0 and OS support


Zedna
 Share

Recommended Posts

I wonder how much is actually broken and how much is shielding for remote exploits. I imagine it would be impossible to predict all exploitable vunerabilities in the future, and this would imply that it's also impossible to produce an OS that isn't broken (at least if it goes online) unless it's 100% pure ROM.

Edited by czardas
Link to comment
Share on other sites

I believe that every patch issued by WU is closely examined by black hats to monitor which vulnerability(-ies) was fixed. So patching against known exploits is obviously necessary.

It would be possible to produce a 100% (not 99.99999999999............99999999%) bug-free OS but this would require use of a formal method which can produce compilable code on a proven compiler AND have the whole hardware passed to formal method as well for a 100% proof of correctness. Of course that would also mean fixing protocols currently in use.

That would require an army of specialists and large resources but it's feasible at humanity scale, especially given that it would give us a stable and proven correct.platform imune to attacks. The issue is that having that would essentially stop hardware and software products turnover and accompanying sales.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

This process is actually used in some high-end mission-critical embedded systems, but the those OS part don't compare to Windows, Linux, MacInTrash and such.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

I think that it would be easier to write optimized software for a world where we don't have to worry about potential intruders. Fast code isn't the safest code. If we just get rid of bad people, there's no more reason to have security software. Free up resources. No more security updates for OS. Free up resources.

Resources for all the good little boys and girls.

Link to comment
Share on other sites

 

Sorry for kind of off-topic.

Does it makes any sense to you (Anyone):

Func Foo()
    Local Static Const $var = "Whatever"
    ; Or
    Local Const Static $var = "Whatever"
EndFunc

It makes sense to me.  It doesn't seem to be valid syntax though.  It would simply declare a const variable which isn't destroyed when the function goes out of scope.

Btw: (To AutoIt developers, MVPs, and other relevant members) -- Would this make a valid feature request?

Edited by jaberwacky
Link to comment
Share on other sites

Here is another snippet which explains more:
 

Func Foo() ;A function which will be called a lot

    Local Const Static $hControl = GUICtrlGetHandle($iCtrlId)
    ; I don't want the above line to be executed each time the function get called
    ; I don't want to declare $hControl as a global variable, I don't need it anywhere else maybe
    ; I don't want to change $hControl's value by a mistake

    ;...
EndFunc
Link to comment
Share on other sites

Exactly. Just think of Local Static Const $seed = Random(<something>)

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...