Re: Need teamwork to gain experience!

2023-06-21 Thread Rishit Srivastava
Mine is @rishit51

On Wed, Jun 21, 2023, 05:01 web_dj  wrote:

> please give me github account
>
> On Tue, Jun 20, 2023 at 11:53 PM Priya v v 
> wrote:
>
>> Add me also
>>
>> On Tue, 20 Jun 2023 at 16:05, Eva Kemo  wrote:
>>
>>> add me as well https://github.com/kemoeverlyne
>>>
>>> On Tue, Jun 20, 2023 at 4:04 PM ADEDIRAN ISAAC 
>>> wrote:
>>>
 Please add me as well,
 https://github.com/aiziks

 On Mon, Jun 19, 2023, 6:54 PM web_dj 
 wrote:

> You are welcome ..
> Please give me yout github account .
>
> On Mon, Jun 19, 2023, 6:33 PM Mahmoud Nasser <
> mahmoud.nasser.abdulhame...@gmail.com> wrote:
>
>> I could save some time for building great things!
>>
>> On Mon, Jun 19, 2023, 5:30 PM ADEDIRAN ISAAC 
>> wrote:
>>
>>> Im also interested in this collaboration please.
>>>
>>> On Sun, Jun 18, 2023, 2:41 PM web_dj 
>>> wrote:
>>>
 I am female Django web developer . I am looking for a serious
 female exper programmer(s) who have the same interests as me to work
 together on joint projects on github.
 We will do projects that use :
 Django Rest framework(Backend),
 React javascript(Frontend).

 Note: please i need who have expert (not beginers) because i need
 to get expert from them to reach senior programmer level to be able to 
 work
 online with a programming company at future.

 You can send email to me, i will be so happy if i get any
 assistance.

 email:
 developer.web...@gmail.com



 --
 You received this message because you are subscribed to the Google
 Groups "Django developers (Contributions to Django itself)" group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to django-developers+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-developers/CAHgh7XZzUkBMwRSbcvO0pSCu2V2U-TEZZmVeFJ4wKj-b3hmwgw%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django developers (Contributions to Django itself)" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-developers/CAGtyP_9g-OkgbLWh3O1AWAAcaz7oFPW47hXun9u-vNYYk1fdrg%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-developers/CALg2P9pi_7yNDWh0ci5_sNEieQGQgOrg81OQ7R6BnpJaV99jxg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/CAHgh7XZ778jTTscVr97_7Jdcdmk4857t9WBD7L4bagJjmxCFeg%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django developers (Contributions to Django itself)" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-developers+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-developers/CAGtyP_8NM89Kdmr8aPdrmB3hPA-NXwe3d-3k3gSYe%3DS-dN%3DVJA%40mail.gmail.com
 
 .

>>> --
>>> You received this me

Re: Using `SECRET_KEY` in password hashers

2023-06-21 Thread Fatih Erikli
For those who need something like this, I created a python package
"django-peppered-passwords".

https://github.com/fatih-erikli/django-peppered-passwords

On Mon, Jun 19, 2023 at 8:54 PM Fatih Erikli 
wrote:

> I recently created a ticket about it
> https://code.djangoproject.com/ticket/34661
>
> It has been marked duplicate of
> https://code.djangoproject.com/ticket/30561
>
> There is a document of NIST added on the original ticket.
> I think if there is going to be any compliance investigation about a
> Django project, this will cause an issue.
>
> Having salts on user tables causes different questions about the necessity
> of them, like if they are stored next to the password, why do we hash the
> password with a salt. There is so much work done already at that level. I
> think it should be a complete solution and should not leave any concern to
> the developers.
>
> I don't want myself invent an authentication for my project. I don't want
> to use a patched or extended version of Django. Having a developer
> community consensus about the things we should concern, helps me to focus
> on the project. This is why I think we should have it in new Django
> projects by default.
>
> On Tuesday, June 9, 2015 at 5:31:48 PM UTC+3 Aymeric Augustin wrote:
>
>> Hello,
>>
>> 2015-06-09 16:16 GMT+02:00 Josh Smeaton :
>>
>>> You're referring to a "pepper" - a site wide secret that's supposed to
>>> be used, in some way, to further encrypt passwords. As far as I'm aware
>>> there are no algorithms available that take a pepper into consideration.
>>>
>>
>> I'm also wary of implementing a mechanism that isn't considered a best
>> practice in the industry.
>>
>> Pepper doesn't achieve anything that you couldn't do by changing the
>> number of rounds (or perhaps the salt length, but I'm not sure that makes
>> sense). Any additional code adds potential for implementation mistakes that
>> could introduce security issues.
>>
>> As a consequence, I think there are more risks than benefits to this
>> proposal as it stands. I would change my mind if pepper countered a common
>> class of attacks, like salt countered rainbow tables.
>>
>> --
>> Aymeric.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/60f94770-ec26-4713-9b42-2b506a40fc68n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CA%2B7drOEM3r0vBy2q4%3DfkkLw1fqCP5c8%2BW5EHYpVbUk1eLwumnA%40mail.gmail.com.


Re: Need teamwork to gain experience!

2023-06-21 Thread Manjusha
Yeah I am also interested
This is my github account
https://github.com/manjusha-0103

On Thu, 22 Jun 2023, 00:13 Rishit Srivastava,  wrote:

> Mine is @rishit51
>
> On Wed, Jun 21, 2023, 05:01 web_dj  wrote:
>
>> please give me github account
>>
>> On Tue, Jun 20, 2023 at 11:53 PM Priya v v 
>> wrote:
>>
>>> Add me also
>>>
>>> On Tue, 20 Jun 2023 at 16:05, Eva Kemo  wrote:
>>>
 add me as well https://github.com/kemoeverlyne

 On Tue, Jun 20, 2023 at 4:04 PM ADEDIRAN ISAAC 
 wrote:

> Please add me as well,
> https://github.com/aiziks
>
> On Mon, Jun 19, 2023, 6:54 PM web_dj 
> wrote:
>
>> You are welcome ..
>> Please give me yout github account .
>>
>> On Mon, Jun 19, 2023, 6:33 PM Mahmoud Nasser <
>> mahmoud.nasser.abdulhame...@gmail.com> wrote:
>>
>>> I could save some time for building great things!
>>>
>>> On Mon, Jun 19, 2023, 5:30 PM ADEDIRAN ISAAC <
>>> isaacadeda...@gmail.com> wrote:
>>>
 Im also interested in this collaboration please.

 On Sun, Jun 18, 2023, 2:41 PM web_dj 
 wrote:

> I am female Django web developer . I am looking for a serious
> female exper programmer(s) who have the same interests as me to work
> together on joint projects on github.
> We will do projects that use :
> Django Rest framework(Backend),
> React javascript(Frontend).
>
> Note: please i need who have expert (not beginers) because i need
> to get expert from them to reach senior programmer level to be able 
> to work
> online with a programming company at future.
>
> You can send email to me, i will be so happy if i get any
> assistance.
>
> email:
> developer.web...@gmail.com
>
>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it,
> send an email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/CAHgh7XZzUkBMwRSbcvO0pSCu2V2U-TEZZmVeFJ4wKj-b3hmwgw%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django developers (Contributions to Django itself)" group.
 To unsubscribe from this group and stop receiving emails from it,
 send an email to django-developers+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-developers/CAGtyP_9g-OkgbLWh3O1AWAAcaz7oFPW47hXun9u-vNYYk1fdrg%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django developers (Contributions to Django itself)" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-developers/CALg2P9pi_7yNDWh0ci5_sNEieQGQgOrg81OQ7R6BnpJaV99jxg%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-developers/CAHgh7XZ778jTTscVr97_7Jdcdmk4857t9WBD7L4bagJjmxCFeg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google
> Groups "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/CAGtyP_