Dynamic code generation and execution without writing code to database [closed] - abap

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it possible to generate ABAP code and execute it in memory without writing code to DB?

Yes. Use Google. Use Google. Use Google. Use Google. Use Google. (I have to write at least 30 characters although I really don't have anything else to say besides that wanting to generate code dynamically is usually a sign you're on the wrong track.)

Related

For which type of web database , '0'or'0'='0' works as a password on login page? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How to find vulnerable sites, where one can login using '0'or'0'='0' and such other combinations ?
I believe you are asking the question with reference to to SQL injection. If the login control is using a query based on string concatenation then chances are that this will succeed in logging in.
It should be: ' or '0'='0

How to use openLdap? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm sorry, but I'm not sure if this is the right place to ask. But is there anyone out there that can teach me a step by step guide on how to use OpenLdap? There isn't any GUI and I'm unfamiliar with it. I'm trying to create a user in there.
Thanks in advance. :)
Use an LDAP browser. There are many free ones available, e.g. Userbooster Light, JXplorer, ...

Anyone know a SQL schema (scripts or something) for a forum's Start up? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
We are searching for a while now on google to find out some good SQL scripts to
create a "forum". Does anyone know some great start up kit (Image, scripts, schema view) from what I could start? We want something with the most functionalities as possible (such as number of views, ranking, etc).
Check the existing forum projects like phpbb.

How to get the code from a `.dll` in C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a .dll and I need some code from it. How do I get the code from a .dll?
If by code you mean the textual instructions that were used to generate the machine code in the library, the best you can really do at this point is assembly language. Nearly any debugger will let you view the assembly.
If you meant the original high level language, your out of luck.
You can't. You can open it up in a hex editor, but there is no way to get the original source code from compiled output. This is the basis for the entire closed-source (proprietary) software industry.

asp.net/ C# screen scaping done easily? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
whats the simplest way to do screen scraping using c# and .net 4.0?
are their libraries i can reuse? i think i heard of an html tool pack for this but can not find it now...
The parsing should be done with the HTML Agility Pack. I've never used it so I don't know if it will connect to the web pages for you or not. If not, you should be able to use the WebClient class.