czardas Posted July 10, 2014 Share Posted July 10, 2014 (edited) 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 July 10, 2014 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
jchd Posted July 10, 2014 Share Posted July 10, 2014 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 hereRegExp tutorial: enough to get startedPCRE 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 More sharing options...
czardas Posted July 10, 2014 Share Posted July 10, 2014 I imagined it. operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
jchd Posted July 10, 2014 Share Posted July 10, 2014 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. czardas 1 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 hereRegExp tutorial: enough to get startedPCRE 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 More sharing options...
FaridAgl Posted July 10, 2014 Share Posted July 10, 2014 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 http://faridaghili.ir Link to comment Share on other sites More sharing options...
Richard Robertson Posted July 11, 2014 Share Posted July 11, 2014 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 More sharing options...
jaberwacky Posted July 11, 2014 Share Posted July 11, 2014 (edited) 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 July 11, 2014 by jaberwacky Helpful Posts and Websites: AutoIt3 Variables and Function Parameters MHz | AutoIt Wiki | Using the GUIToolTip UDF BrewManNH | Can't find what you're looking for on the Forum? Link to comment Share on other sites More sharing options...
FaridAgl Posted July 11, 2014 Share Posted July 11, 2014 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 http://faridaghili.ir Link to comment Share on other sites More sharing options...
jchd Posted July 12, 2014 Share Posted July 12, 2014 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 hereRegExp tutorial: enough to get startedPCRE 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now