Advise password protected local DB

Could you please advise me some free DB that supports JDBC and could be password protected or it content could be coded.

* HSQL - stores data in text with just
"INSERT INTO TABLE T1 (id, name) VALUES (10,
'John');" - that is not secure at all. Every one
could get that data.Pretty much all databases do that. If you want to encrypt your data before writing it and decrypt it after reading it, you're free to do that.

Similar Messages

  • Password protect local mailboxes in Mail? + AOL Communicator ?

    A friend wants to know if they can password protect local mailboxes like AOL Communicator on Mac OS X Mail. Anyone know how without FileVault?
    In addition if you know why she may be getting this error, that would be helpful too:
    "Failled to initialize NSS. Run Identity Manager first to create the NSS databases or check for free disk space."

    I'm looking for a simple solution like this too. How can we seriously work with email and also work live with others too? It's as if OS X wants all the laundry in everyones face... Unless there some modesty is built into Mail.
    I think this post might suggest a better way-- Use an external HD for mail boxes.
    http://discussions.apple.com/thread.jspa?messageID=1293280&#1293280

  • Can I set up form results to be viewed in a password protected area?

    Hi,
    I am trying to create a form to capture leads for my new lead capture website. I have a bankruptcy business and would like another, new website that I can capture bankruptcy leads from a form. A lead would, of course, be someone who comes to my site and is interested in contacting with an attorney to schedule a free consultation by filling out an online form - "name, state, county, debts, etc.)
    What I would like to do is set up a nationwide site and sell, refer, give, trade? leads from other states to other local attorneys.
    So, my question is, could I set up a form with FormsCentral that I could integrate with a password protected section of my website that the other lawyers could login to in order to check form results? Could it be set so many different users (ie lawyers advertising on my site) could login to check results for their personalized form (for example lawyer A in State A can log into his own private page to check results from Form A, lawyer B in State B can login to a private page to check results from form B and so on and so forth...) Would I need a developer to code this application? Any help would be appreciated.
    Obviously this project was a larger than I expected.
    Thanks a lot!

    We likely wouldn't be a good fit for this. You'll likely have to build a custom application (developer doing coding) to support your use case.
    Randy

  • Retrieving data from a password protected URL

    Hi guys,
    I was hoping that someone might be able to advise me on how to read data into java from a password protected URL. The first page has a "login" area, where the username and password must be supplied before access to the next pages are allowed. It is from these following pages that I wish to get the data.
    I have a user name and password, and when I log in the usual way no cookie is created, nor is the username or password displayed as a part of the URL. Therefore, when I run my HTML parsing program to parse those pages, I get a message saying that I have to login first.
    You can have a look at the site should you wish (I strongly advise this to get an understanding of the problem): http://news.ft.com/home/uk/
    If anybody has some source code that could resolve this issue, I would be terribly grateful.
    Thanks!

    Hi.
    Usually you should be able to access
    password-protected sites using a URL of the
    form:http://username:[email protected]
    -page.com/If you're trying to access those sites without using a
    browser, you still have to encode the username and
    password with base64-encryption, which is usually done
    by the browser.
    cheers,
    kelysarMy program accesses this site without using a browser.....
    In this case would you or anybody else be able tell me how to go through the process from start to finish? I just haven't got a clue!

  • How to write to a password protected excel sheet using ActiveX?

    Hi all,
    I would like to write to a protected Excel sheet. I protect the sheet just in case the data is not wrongly programmatically saved to other cells. These cells contained formulas.
    Please help.
    Thanks,
    keng

    Hi Randy,
    Thank you for looking into my problem.
    I have looked into the Workbook.open property node. There is "password" on the property node. Please see attached diagrams.
    Is is the right way to do it?
    Please advise further.
    For your information, the Excel workbook and sheet 1 are password protected.
    Thanks,
    keng
    Attachments:
    Password_Excel.jpg ‏37 KB
    Password_Sheet.jpg ‏23 KB

  • How do I open a WORD document which is password protected?

    I need to open a word document, which is password protected.  I can't even get to a page that'll allow me to put in the password!!!  Can anyone advise how I can do this?
    Thanks.

    Hi JoeyR.
    Thanks for your reply.
    I get the following message when I try to open the document: "The Word document is password protected and can’t be imported".
    I've looked at the Open Office software, as you suggested, but it seems confusing.  I'll give it a try, though, as I'm wasting too much time!
    Fingers Crossed!

  • How do I keep a Pages 09 password protected file in iCloud?

    After uploading a Pages 09 password protected file from my laptop it shows as a page with the Pages 09 icon in the center (no visible text) in iCloud.  So far so good.  But once I open that doc using my iPhone, a task that as expected requieres entering the password, the protection seems to disapear and the file gets saved without the protection right in iCloud. The icon for the document changes from the Pages icon I described above to the text of the first page, just as a regular file, and if I try to open it back again entering the password is not requiered!
    How do I keep the file password protected?
    Thanks.  Ale

    Files stored in iCloud are stored locally as well as on some remote Apple server - just not on the desktop. You cannot keep the file on the desktop but you should be able to locate it in your Mobile Documents folder, make an alias, and put the alias on your desktop.
    The Mobile Documents folder is in your Library folder (hold option while selecting the Go menu in the Finder) and your Numbers documents are located in com~apple~Numbers

  • Operations on Text File - Encrypt, Decrypt, Password Protected

    Dear Experts,
    My requirement is to upload a text file  and do some operations on it and then encrypt the content in it ans save it on application server with password protected. Later i want to decrypt it.
    Please help me for the following:
    How to encyypt and decrypt the text file using standard encryption alogrithms like DES, MD5, RSA? Are there any standand function modules for both encryption and decryption which accepts a user defined public key?
    How to download a password protected text file?
    Thanks in advance.

    CALL FUNCTION 'Z_CRYPT_FILE'
            EXPORTING
              SOURCE_PATH         = WS_PATH
              SOURCE_FILE         = WS_OLDFILE
              DESTINATION_PATH    = WS_NEW_PATH
              DESTINATION_FILE    = WS_NEWFILE
              SWITCH              = 'E'
              KEY                 = ZUSER_PW
              KEEP_SOURCE_FILE    = ' '
            EXCEPTIONS
              INVALID_SWITCH      = 1
              SOURCE_FILE_NOTFOUND = 2
              DIDNT_WORK          = 3.
    FUNCTION MODULE Z_CRYPT_FILE 
    DATA: CINPUT(300) TYPE C.
    DATA: BEGIN OF LIST OCCURS 0,
            DATA(238) TYPE C,
            DELIMITER(04) TYPE C,
            FILE(12) TYPE C,
          END OF LIST.
    DATA: SOURCE TYPE ZCHAR200.
    DATA: DESTINATION TYPE ZCHAR200.
    DATA: ZINDX TYPE I.
    DATA: msg(100).
    IF SWITCH = 'E'.
       IF FILETYPE = 'T'.
          OPEN DATASET SOURCE IN TEXT MODE FOR INPUT ENCODING DEFAULT
             message msg.
       ELSE.
          OPEN DATASET SOURCE IN BINARY MODE FOR INPUT message msg.
       ENDIF.
       IF SY-SUBRC <> 0.
          RAISE SOURCE_FILE_NOTFOUND.
       ENDIF.
       CLOSE DATASET SOURCE.
       CLEAR CINPUT.
       CONCATENATE '/usr/local/bin/gpg -sev -r'
        KEY
        '-o'
        DESTINATION
        SOURCE
       INTO CINPUT SEPARATED BY SPACE.
       CONCATENATE CINPUT '2>&1' INTO CINPUT SEPARATED BY ' '.
       CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                                  LIST-SYS.
       IF FILETYPE = 'T'.  
          OPEN DATASET DESTINATION IN TEXT MODE FOR INPUT ENCODING DEFAULT
             message msg.
       ELSE.
          OPEN DATASET DESTINATION IN BINARY MODE FOR INPUT message msg.
       ENDIF.
       IF SY-SUBRC = 0.
          CLOSE DATASET DESTINATION.
          IF keep_source_file <> 'X'.
             CLEAR CINPUT.
             CONCATENATE 'rm' SOURCE INTO CINPUT
             SEPARATED BY SPACE.
             CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                            LIST-SYS.
          ENDIF.
       ELSE.
        write: 'Encryption error  on command: ',
           cinput.
        skip 1.
         loop at list.
            write: / LIST.
           endloop.
          RAISE DIDNT_WORK.
       ENDIF.
       IF FILETYPE = 'T'.  
          OPEN DATASET SOURCE IN TEXT MODE FOR INPUT ENCODING DEFAULT.
       ELSE.
          OPEN DATASET SOURCE IN BINARY MODE FOR INPUT.
       ENDIF.
       IF SY-SUBRC <> 0.
          RAISE SOURCE_FILE_NOTFOUND.
       ENDIF.
       CLOSE DATASET SOURCE.
       CLEAR CINPUT.
       CONCATENATE '/usr/local/bin/gpg -o'
        DESTINATION
        SOURCE
       INTO CINPUT SEPARATED BY SPACE.
       CONCATENATE CINPUT '2>&1' INTO CINPUT SEPARATED BY ' '.
       CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                                  LIST-SYS.
      REFRESH LIST.
      CLEAR LIST.
       IF FILETYPE = 'T'. 
          OPEN DATASET DESTINATION IN TEXT MODE FOR INPUT ENCODING DEFAULT.
       ELSE.
          OPEN DATASET DESTINATION IN BINARY MODE FOR INPUT.
       ENDIF.
       IF SY-SUBRC = 0.
          CLOSE DATASET DESTINATION.
       ELSE.
    *list output if error
          loop at list.
            write: / LIST.
           endloop.
          RAISE DIDNT_WORK.
       ENDIF.
    ENDIF.

  • Password protection to an execution file

    I want to create an execution file with password protection. I want to protect the running application that if somebody wants to change any numeric control values or play around with the running program a pop up window will come out and will ask for password access. 
    Any advise or hint i will greatly appreciate.
    kind regards,

    Hello Ayo,
    here comes the next example...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    password protect modified.vi ‏39 KB

  • How to display in browser a password protected pdf file I created?

    I created a password protected pdf file.
    I want to display the file in browser so that viewers can only view it online.
    It is better that viewers cannot download it.
    But I donot know how to prevent viewers downloading the file.
    Since the pdf is password protected, viewers don't have the password even they download it.
    But how can I display the password protected pdf file in browser when I know the password?
    Or is there a better to just viewers see the pdf file online and prevent them from downloading and printing it?

    Any file on the web has to be copied to the local machine in order for the file content to be presented to the viewer. That's how the "www" is built.  So, to make use of your web based PDF the file has to be downloaded to the local machine. This might be to the local machine's temporary internet / browser cache or (via a 'save this to my computer') to some other location on the local machine's HDD. Bottom line -- web based files get downloaded this is the case for protected file or a non-protected file.
    Be well...
    Message was edited by: CtDave

  • Can't turn off password protected sharing - Windows 7

    When I turn off password protected sharing in the network and sharing center's advanced settings, I save settings but when I go back in, it's turned on again.  Turning it off doesn't stick.
    This is what seess to be forcing a password and prevents me from setting up a backup to a network share drive.
    Any ideas?

    I noticed there is loads of stuff about problems with Networking Win 7 and XP/2000 PCs etc.  I also couldnt get Password Protected sharing OFF to stick and had problems with Win 7/XP machines loosing sight of each other, when a Win 7 PC was added to a Network.
    I saw some comments about the Guest Account - needs to be about with blank password but the password prot off may not like that
    So, I enabled it, set a blank password on it but turned it Off!!.
    And, as if by magic, Password Protected Sharing OFF engaged OK. 
    First, Using the console.   
    Windows Start - type   mmc   in search box, select mmc.exe which appears at top of Start Window. 
    On the console window do File - Add/remove Snap ins - select Local Users and groups - Add - Local computer.
    Add other snap ins if you wish then OK.  File Save to save your console setup with a 'name'.msc - use the 'name' in the Windows Start search box next time.
    In the console window.
    Expand Local Users and groups, select User folder, Select Guest Acct, Rt Click - Properties
    Ticked - User Cannot Change Password and Password Never Expires
    Unticked - User must change password, Account is disabled, Account is locked out
    Apply then OK
    Select Guest Account - Rt Click - Set Password - Proceed - ensure password fields are blank - OK
    Windows Start - Control Panel - User Accounts - Add or Remove User Account
    Select the Guest Account and Turn it Off
    Control Panel - Network and Sharing Center - Change Advanced Sharing Settings  
    Expand Home or Work
    Network Discovery ON
    File and printer sharing ON
    Public Folder Sharing ON
    Media Streaming Off
    Enable file sharing 40-56 encryption machines (if XP/2000 etc PCs in workgroup)
    Password Protected Sharing OFF 
    Hope this helps; I could however be wrong about the logic but lets see what the experts say (please modify/delete as appropriate)!!
    I must admit the 'connectivity' on my Network has improved; PCs not loosing each other.
    Good Luck
    Steve
    Regards Steve

  • IPhoto - MobileMe gallery subscription - problem with password-protected

    I am having a peculiar problem with subscribed galleries from MobileMe in iPhoto 08 and iPhoto 09. For galleries that have password-protection enabled, the full URL of the gallery subscription feed is pulled through as the Subscription title instead of the gallery title.
    For example "http://gallery.e.com/ACCOUNT-NAME/XXXXXX/?webdav-method-truthget&depth=infinit y&feedfmt=atom....
    This doesn't occur for public MobileMe galleries. The title of the gallery comes across and the URL of the subscription is hidden.
    Anyone having similar problems? Local Genius Bar couldn't help and assumed it was just a bug, but it doesn't seem to be typical of Apple.
    As an aside, it would also be nice to have these feed subscriptions behave similarly to the way RSS subscriptions work in Mail, with the ability to select how often the feed is queried and indicate the number of new items. This would alert users of changes to feeds.
    Joe

    Upon further research, it appears that this problem occurs when publishing from either iPhoto or Aperture to MobileMe. The problem seems to be when a gallery is published and one chooses not to have the gallery appear on the main gallery page (hidden). It seems to have nothing to do with whether or not one protects the gallery with a password.
    So, Apple, if you are listening, can you provide any information on how to have the title of the gallery come through when subscribing using iPhoto while at the same time not listing the gallery on the main MobileMe gallery page? This seems to be a fixable bug.

  • How do I stop my child from erasing the "history" on mozilla? Is there a way to password protect it so only I can access it?

    My teenager erased the history each time he goes on so that I don't see where he was (so he doesn't get in trouble for going to youtube when he should be doing homework). I'd like to be able to password protect the history so he can no longer erase it. Can you please advise me.

    One option is to use the Public Fox add-on to password protect parts of Firefox including the option to clear recent history - https://addons.mozilla.org/firefox/addon/public-fox/
    The downside of using an add-on is that it is quite easy to bypass. An alternative approach is to use a third party parental control application that stores its own log of sites that are visited. If the Firefox list is cleared, the sites will still be shown in the other application. One such application is the free K9 web protection - http://www.k9webprotection.com/

  • Internet Explorer will not open a password-protected webpage

    I've asked this question in the General Discussion forum but
    did not find a solution. I am using DW8.0.2 / MySQL 4.1 / PHP5.1 to
    create PHP login and restricted access webpages. Locally (i.e.
    Windows XP / IIS5.0), they all function properly no matter what
    browser I use. However, on my ISP's server that running Linux /
    Apache, Internet Explorer 6.x or 7.x will not open the
    password-protected webpages - all the other php pages open and
    function properly. I can use Opera, Netscape, or Firefox and the
    pw_protected webpages open fine - just not in IE.
    I've tried cookies on / off, popup blocker on / off, and
    changed my PHP login scripting - all to no avail. Any one have any
    ideas why IE won't open a PHP-scripted pw-protected webpage while
    all other browsers can?

    Thanks for your suggestion. I've added the site to IE's
    Trusted Zone... but no luck. And to test further, I've turned off
    EVERY 'disable' feature I could in IE and still no joy.
    Could the problem be how IE proceses (or doesn't process) my
    PHP logon scripts and possibly does not pass the session on to
    Apache (the server is a Linux box running Apache)? I'm enclosing my
    scripts for review and hopefully for a discovery of why this is
    happening only in IE and not the other browsers.
    Here is my logon script:
    <?php
    // *** Start the session
    session_start();
    // *** Validate request to log in to this site.
    $FF_LoginAction = $HTTP_SERVER_VARS['PHP_SELF'];
    if (isset($HTTP_SERVER_VARS['QUERY_STRING']) &&
    $HTTP_SERVER_VARS['QUERY_STRING']!="") $FF_LoginAction .=
    "?".htmlentities($HTTP_SERVER_VARS['QUERY_STRING']);
    if (isset($HTTP_POST_VARS['Username'])) {
    $FF_valUsername=$HTTP_POST_VARS['Username'];
    $FF_valPassword=$HTTP_POST_VARS['Password'];
    $FF_fldUserAuthorization="Status";
    $FF_redirectLoginSuccess="bulletin_edit.php";
    $FF_redirectLoginFailed="access_error.html";
    $FF_rsUser_Source="SELECT Username, Password ";
    if ($FF_fldUserAuthorization != "") $FF_rsUser_Source .= ","
    . $FF_fldUserAuthorization;
    $FF_rsUser_Source .= " FROM tblaccess WHERE Username='" .
    $FF_valUsername . "' AND Password='" . $FF_valPassword . "'";
    mysql_select_db($database_leathernecks, $leathernecks);
    $FF_rsUser=mysql_query($FF_rsUser_Source, $leathernecks) or
    die(mysql_error());
    $row_FF_rsUser = mysql_fetch_assoc($FF_rsUser);
    if(mysql_num_rows($FF_rsUser) > 0) {
    // username and password match - this is a valid user
    $MM_Username=$FF_valUsername;
    session_register("MM_Username");
    if ($FF_fldUserAuthorization != "") {
    $MM_UserAuthorization=$row_FF_rsUser[$FF_fldUserAuthorization];
    } else {
    $MM_UserAuthorization="";
    session_register("MM_UserAuthorization");
    if (isset($accessdenied) && false) {
    $FF_redirectLoginSuccess = $accessdenied;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = false;
    header ("Location: $FF_redirectLoginSuccess");
    exit;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = true;
    header ("Location: $FF_redirectLoginFailed");
    exit;
    ?>
    And here is the script that appears on each restricted
    webpage:
    <?php
    // *** Restrict Access To Page: Grant or deny access to this
    page
    $FF_authorizedUsers=" edit";
    $FF_authFailedURL="access_error.html";
    $FF_grantAccess=0;
    session_start();
    if (isset($HTTP_SESSION_VARS["MM_Username"])) {
    if (false ||
    !(isset($HTTP_SESSION_VARS["MM_UserAuthorization"])) ||
    $HTTP_SESSION_VARS["MM_UserAuthorization"]=="" ||
    strpos($FF_authorizedUsers,
    $HTTP_SESSION_VARS["MM_UserAuthorization"])) {
    $FF_grantAccess = 1;
    if (!$FF_grantAccess) {
    $FF_qsChar = "?";
    if (strpos($FF_authFailedURL, "?")) $FF_qsChar = "&";
    $FF_referrer = "Restricted Area";
    $FF_authFailedURL = $FF_authFailedURL . $FF_qsChar .
    "accessdenied=" . urlencode($FF_referrer);
    header("Location: $FF_authFailedURL");
    exit;
    ?>
    Any ideas, suggestions or help is greatly appreciated.

  • Open password protected PDF in website

    Hi,
    I hope someone can help me. Greatly appreciate it.
    My website has PDF documents that's available for registered users to view online (through my site) only.
    Currently, I can't find any solutions to prevent users from downloading/"save-as" the PDF doc in their local drives, so I'm thinking of password-protecting these PDFs. This will ensure that they'd not be able to view the PDFs even though they download it and save-as local.
    However, how do I open these password-protected PDFs on my site?
    When I point/redirect to these PDFs, it will prompt for password.
    It'd defeat all protection intent if I were to give the password to the user to enter, right?
    Example:
    1. Response.Redirect("mySecuredPdf.pdf")
    2. The browser will then prompt user for password.
    What can I do in the CodeBehind to enable the server to OPEN the pdf, and at the same time, pass the correct password to the viewer to open without prompting?
    I cannot remove password, because I want to prevent users from downloading and then opening it later, or redistributing the file.
    btw, i'm using ASP.NET.
    Please help.

    There's a similar thread in the Acrobat Windows section, and the answer is the same - only a DRM system with a client UI (such as Adobe Digital Editions) can restrict the *use* of a file. You cannot prevent the client downloading and saving it, as otherwise they can't see it on their screen. The page you're reading now is not on a computer at Adobe - it's on yours.
    > What can I do in the CodeBehind to enable the server to OPEN the pdf, and at the same time, pass the correct password to the viewer to open without prompting?
    I think you're getting the flow a little backwards - the PDF is 'opened' by the client, using their copy of Adobe Reader (or whatever). The webserver has nothing to do with the process other than blindly sending the file's 1s and 0s down a wire, so can't do anything to directly control the client's desktop applications.

Maybe you are looking for

  • OnMousover JavaScript in a Report Column

    Thank you in advance for any insight you might be able to provide. I am attempting to show an alert when mousing over a column in a report. The code i am trying to use is: which works perfectly when i am mousing over a text area item on the page. Unf

  • MD4C order report for shipping notification doesnu2019t display any component

    Dear guru , I have created a shipping notification for a subcontract order. If I run order report (using MD04 or MD4C)  for shipping notification doesnu2019t display any component. I have seen note 498217. Any workaround does exist ? What do you sugg

  • Computer freezes whenever I turn on screensaver, and . . .

    System Preferences freezes whenever I try to edit/change the screensaver. I have my mac set to "hot corners" so that if I drag my mouse to the lower right corner, my screensaver will turn on. I sent in my macbook a few weeks ago to have the optical d

  • Scroll bar on the right is off the screen. How is this fixed?

    In the 11.0.1 version of iTunes, when I go to full screen, the window is too big and the scroll bar on the right is off the screen. Can this be fixed, or do I have to wait for the next version?

  • Advice on Installing Windows 7 on a MBP 17"

    Need some advice on install Windows 7 (barebones) on a Mac 17" MBP. It is possible to instaall Windows 7 with out all the crap that MS has in Winows 7 and does it play nice once you do have it installed with ParallelsDesktop-7.0.15054.722853 or would