Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8980655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:08:31+00:00 2026-06-15T20:08:31+00:00

I have created a desktop application that users can download and run from their

  • 0

I have created a desktop application that users can download and run from their own machines. This application requires network access and will often send changes to a database (hosted on my server) with updates, inserts, etc.

Keeping a password directly in the application is no good because if the application is decompiled then the user can see the database’s credentials and gain full access on their own.

Is the only safe way to do this using GET and POST and an API on the server side? Are there any other options?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T20:08:32+00:00Added an answer on June 15, 2026 at 8:08 pm

    So there are 2 issues here: 1) Authenticating users issuing POST updates to your server side PHP/database (they are who they say they are) and 2) Preventing your database credentials from being exposed.

    1) Are you authenticating users with a 3rd party intergrated server like LDAP?

    2) The server credentials shouldn’t be stored in the application because they are never needed there. Once you authenticate a user and their request, your server side PHP should have a security function which decrypts the DB credentials and issues the SQL statement based on the information submitted by the user.

    So to answer your question, yes, it is best practice to host a server side framework to handle incoming requests, which authenticates the user and then executes their request.

    I suppose if you wanted the desktop app to be able to directly update the DB (not recommended), you could store an encrypted hash of the DB credentials and use a decryption algorithm to decrypt and then send them to the database.

    <?php
        if(isset($_POST['query'])) {
            $query = $_POST['query'];
            $mysqli = new mysqli('localhost', 'my_user', 'my_password', 'my_db');
    
            //Execute SQL
            if($mysqli->query($query) === TRUE) {
                $mysqli->close();
                echo "successful";
            } else { echo "SQL execution error"; }
        } else { 
            echo "invalid query string"; 
        }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a desktop application in WPF that I wish to supply to
We have a Flash app (AS3). This is a desktop application that runs in
I have this requirement for my business. We have a swing desktop application that
I have a web application where users can upload pictures to create their galleries.
I have created a desktop application which continuously changes the image on a fixed
We have created a beautifully designed .NET WPF desktop application. We are installing the
I have created an application for Mac OS X, and I have a desktop
I have created an android application that calls (using kSOAP library) a SOAP based
Assume that we have a network deployed desktop application written in .NET. We don't
I have an application that works like a virtual desktop, with a toolbar with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.