Yes, I know that. But now we got complain from pen test about password vulnerability in html file. How we can avoid this procedure ?
Can I customize activation email from one-time password to onetime activation link to reset password URL ?
We have the problem about password that has sent in activation email. How to change it to activation link instead and force the user change the password when click it ?
how to include javascript file in specific view not in AppBundleConfig (SPA angularJS) i was trying to put script in createOrEditModal.cshtml view however it doesn't work
@section JavaScript { <script type="text/javascript" src="@Url.Content("/Scripts/SomeScript.js")"></script> }
even change to release mode i got these error:
System.Net.Mail.SmtpException: Failure sending mail. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:25
at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)
at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
--- End of inner exception stack trace ---
at System.Net.Mail.SmtpConnection.ConnectAndHandshakeAsyncResult.End(IAsyncResult result)
at System.Net.Mail.SmtpTransport.EndGetConnection(IAsyncResult result)
at System.Net.Mail.SmtpClient.ConnectCallback(IAsyncResult result)
--- End of inner exception stack trace ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Abp.Net.Mail.Smtp.SmtpEmailSender.<SendEmailAsync>d__3.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Abp.Net.Mail.EmailSenderBase.<SendAsync>d__6.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Abp.Net.Mail.EmailSenderBase.<SendAsync>d__4.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAnd...
i've try to test send email forgot password but could not receive any email even though i was trying to switch from hotmail to gmail still could not receive any email
I created Token based API by doing following link: #384@e1dc8ca5-47b2-4d5b-8523-b491e41be940
And I tested my Controller by mark Authorize Attribute in GetHellox action in Util controller. I send request without Authorize header. But those still not filter Authorize.
I don't know some thing wrong. Please help me find solution. Here my source code. <a class="postlink" href="https://gist.github.com/blinkster678/1f7b7b7d5f398275ffabb0024cbab500">https://gist.github.com/blinkster678/1f ... 024cbab500</a> Request result with postman <a class="postlink" href="https://drive.google.com/file/d/0B7ZOKTayIG95NzFtazJ3WllXdm8/view?usp=sharing">https://drive.google.com/file/d/0B7ZOKT ... sp=sharing</a>
Thank you.