Find Jobs
Hire Freelancers

Encrypt passwords (website / MS SQL)

£100-250 GBP

ปิดแล้ว
โพสต์ ประมาณ 6 ปีที่ผ่านมา

£100-250 GBP

ชำระเงินเมื่อส่งงาน
I have a PHP website linked to a very old MS SQL database that still stores member passwords as plain text. I need to update this so that the passwords are updated as encypted but also so that existing members are still able to log in without any problems. New members passwords website would also need to be encrypted. The PHP website's recover password feature might also need to be updated as it currently just sends the plain text password to the member but it would now need to get the member who'd forgotten their password to set a new password. The database/web developer needs to be based in the UK or at least the EU.
รหัสโปรเจกต์: 16634586

เกี่ยวกับโปรเจกต์

21 ข้อเสนอ
โปรเจกต์ระยะไกล
ใช้งานอยู่ 6 ปีที่ผ่านมา

กำลังมองหาการสร้างรายได้ใช่ไหม?

ประโยชน์ของการประมูลกับ Freelancer

กำหนดงบประมาณและกรอบเวลาของคุณ
รับเงินจากการงานของคุณ
อธิบายข้อเสนอของคุณในภาพรวม
ลงทะเบียนและเสนอราคาฟรี
21 ฟรีแลนซ์กำลังเสนอราคาโดยเฉลี่ย £248 GBP สำหรับงานนี้
รูปอวาตาร์ของผู้ใช้
Hi, we've read the project description and very confidence to develop the website & database, we'll provide you professional front & back-end developer services and complete it on given time. We'll definitely make your platform new as per your needs. We have a big team of developers and designers and we always interested in good and stable projects to be done, so we can build relations on top of it to work for long. We're already working with many enterprise level clients and delivering things in same technology in US, UK & Australia and we can give you our client’s reference and you can talk to them. We’ve built many web platforms and sites also IOS and Android mobile apps. Let us discuss in details, explore your system and then come up with the precise time and cost. We offer technologies like HTML/CSS, Bootstrap, Less/Sass, MySQL, Git, React.js, Angular, CRM, JavaScript, JQuery, AJAX, Node.js, Blockchain, PHP, CI, Laravel, Objective C, Java, Rest API, ASP.Net, MVC, AWS, Agile, Software Architecture, WordPress & for apps we use tools like Xcode, Swift, Cocoa, React & Xamarin. Please message us to discuss further and get started. Also, we can show you our past work and can explain you about strength and skills of our company to give you confidence and believe in us for working together. Please let us know and we can revise everything after a brief discussion. We provide lifetime free support for our work and always believe in long-term relations. Cheers.
£300 GBP ใน 7 วัน
4.9 (450 รีวิว)
9.2
9.2
รูปอวาตาร์ของผู้ใช้
Perfect, I can do it. I'm Michele Cimmino, Italian software engineer and full stack web developer with above 8 years of experience in PHP. I'm a specialist of web security and I perfectly know all algorithms for safe password hashing in PHP. I can perform it for 1550GBP this weekend and deliver it on sunday evening or monday morning if we start now. An extra service I could provide is also prevent SQL injection introducing prepared statements everywhere, it would have an additional cost of 3000 GBP and require almost 2 week to be properly maintained and tested. Feel free to contact me on chat, I'll remain at your disposal. Kind regards
£1,550 GBP ใน 7 วัน
5.0 (32 รีวิว)
8.3
8.3
รูปอวาตาร์ของผู้ใช้
I am from Asia. Is it fine? I am ready to fix the password encryption issue and will implement it in forgot password, new users, existing users
£250 GBP ใน 3 วัน
4.9 (251 รีวิว)
8.0
8.0
รูปอวาตาร์ของผู้ใช้
Hi, Can I see your existing site? I'm specialized in custom features secure password, forget password, email notifications and reset related features. I would like to help you out on this project. Cheers, - Zeeshan
£250 GBP ใน 10 วัน
5.0 (472 รีวิว)
7.7
7.7
รูปอวาตาร์ของผู้ใช้
Hi, I am PHP/database coder and would like to help you encrypting the plain passwords. I did this kind of job before and can finish your project within very short time. I recommend to encrypt all existing (plaintext) passwords in your database with MD5. We can do this by using a script. Note: The passwords will not change. For example: Password 'test123' will be encrypted to 'Jx47&gi46', but the user will still login with his password 'test123'. Therefore we also need to modify the login script. No big deal! For resetting the password the user needs to enter his email. He will receive an email with a link to change his password. When he clicks the link he will be redirected to your website and can set a new password. I'll deliver clean, secure and accurate PHP code. Feel free to contact me for any questions. Sincerely, Ozzy
£111 GBP ใน 3 วัน
4.9 (34 รีวิว)
5.5
5.5
รูปอวาตาร์ของผู้ใช้
Hello sir. I know the way to do that. Let's discuss more detail about that. I'm looking forward to your reply. Thanks.
£194 GBP ใน 10 วัน
4.6 (13 รีวิว)
5.9
5.9
รูปอวาตาร์ของผู้ใช้
HI i will encrypt password for your site. i will encrypt your passsword in md5. so it will not store password in plain text, and store password in md5 format, then i will check your encrypted password in your scrypt with again this md5 techniques. this technique security is very high.
£200 GBP ใน 2 วัน
5.0 (31 รีวิว)
4.3
4.3
รูปอวาตาร์ของผู้ใช้
Hi. I propose to use the 'bcrypt' scheme for encrypting the passwords. This includes a 'salt' plus a user-configurable number of hash rounds to mitigate against bruce-force attacks. There is a PHP implementation. I have used bcrypt in 5+ projects previously and it is reasonably straight forward to implement. To allow existing users to log in with their old passwords - here are two tentative options to detect whether or not the user has updated to the newer password format ... 1) Add a boolean column to the user table indicating whether or not they have changed their password yet. 2) Simply examine the format of the password field. (Bcrypt-encrypted passwords have a distinctive format and length.) If they have updated to the new format, use the Bcrypt algorithm to check their password when they try to log in; if not, then allow them to log in, but urge them to set a new password as soon as possible. My DB experience is mainly with PostgreSQL and MySQL rather than MS SQL, but as long as your SQL code is mainly SQL-standard compliant I don't think this will pose a problem. I am based in Ireland.
£150 GBP ใน 5 วัน
5.0 (2 รีวิว)
3.4
3.4
รูปอวาตาร์ของผู้ใช้
Good afternoon, I'm a Scottish web developer who has been creating sites for over 10 years. I have made a range of websites for business: restaurants, travel sites and non-profits. I'm also employed to look after, maintain and update websites on a month-to-month including member sites with full password recover. Using PHP and MySQL I will update all your passwords in the database. This will include a salt to help with security. I will add this check to the login PHP functions so users won't have to edit their password. I'll also need to update the password recover function. Users will be sent an email asking to update their password at a special link. When entering a new password, this new password would be encrypted and saved. Please message me so we can discuss further or feel free to send me a message if you have any further questions or concerns. I’ll be more than happy to answer them for you. Hope to hear from you soon, Mark ,
£150 GBP ใน 7 วัน
5.0 (4 รีวิว)
2.8
2.8
รูปอวาตาร์ของผู้ใช้
I have read your project requirments and I am expert in this task of job I have worke on these type of sites spacially in Php let's start the job.
£120 GBP ใน 7 วัน
5.0 (1 รีวิว)
2.4
2.4
รูปอวาตาร์ของผู้ใช้
hi; how much PHP page you have ? contact me for more information i am available now. thank you. ................. .................................
£111 GBP ใน 1 วัน
5.0 (6 รีวิว)
2.2
2.2
รูปอวาตาร์ของผู้ใช้
I have read all the requirements of your's . As per as your requirements i will update everything. password will encrypted and there will be a new way to reset the password. Yeah i am new in freelancer but i have strong background in PHP. I am ready to fulfill your requirements
£111 GBP ใน 3 วัน
0.0 (0 รีวิว)
0.0
0.0
รูปอวาตาร์ของผู้ใช้
A proposal has not yet been provided
£111 GBP ใน 5 วัน
0.0 (0 รีวิว)
0.0
0.0

เกี่ยวกับลูกค้า

ปักธงของ UNITED KINGDOM
London, United Kingdom
0.0
0
เป็นสมาชิกตั้งแต่ เม.ย. 5, 2018

การยืนยันลูกค้า

งานอื่นๆ จากลูกค้ารายนี้

AirBnB style website (UK based web developers preferable)
£3000-5000 GBP
ขอบคุณ! เราได้ส่งลิงก์สำหรับเครดิตฟรีให้คุณทางอีเมลแล้ว
เกิดข้อผิดพลาดขณะส่งอีเมลของคุณ กรุณาลองอีกครั้ง
โลโก้ Freelancer Thailand / ภาษาไทย ช่วยเหลือและสนับสนุน FreelancerประเภทโปรเจคการประกวดFreelancerองค์กรแพ็กเกจสมาชิกโครงการ Freelancer ชั้นแนวหน้าการจัดการโปรเจคงานในพื้นที่Photo Anywhereหน้าจัดแสดงผลงานAPI สำหรับนักพัฒนาได้รับการยืนยันDesktop App เกี่ยวกับเกี่ยวกับเราวิธีใช้งานความปลอดภัยนักลงทุนแผนผังเว็บไซต์เรื่องราวข่าวออกสื่อทีมรางวัลข่าวประชาสัมพันธ์ร่วมงานกับเรา ข้อกำหนดนโยบายความเป็นส่วนตัวข้อกำหนดและเงื่อนไขนโยบายลิขสิทธิ์ข้อพึงปฏิบัติค่าธรรมเนียมและค่าบริการหุ้นส่วนEscrow.comLoadshiftWarrior Forum แอปโลโก้ Apple App Store โลโก้ Google Play
ไม่สามารถคัดลอกไปยังคลิปบอร์ดได้ โปรดลองอีกครั้งหลังปรับเปลี่ยนการอนุญาต
คัดลอกไปยังคลิปบอร์ดแล้ว
ผู้ใช้ที่ลงทะเบียน งานที่มีการโพสต์ทั้งหมด
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
กำลังโหลดตัวอย่าง
ได้รับอนุญาตสำหรับตำแหน่งทางภูมิศาสตร์
เซสชั่นการเข้าสู่ระบบของคุณหมดอายุและคุณได้ออกจากระบบแล้ว กรุณาเข้าสู่ระบบอีกครั้ง