Wednesday, August 16, 2023

Solar Lights Outdoor 182 LEDs 2500Lm Solar Motion Sensor Lights Solar Panel 15.3 in2 and 3 Modes(Security/Permanent On All Night/Smart Brightness Control) with IP65 Waterproof with Wide Angle(2pack)

About this item

1.Three Optional Modes 

        1.security mode(Motion sensor turns the light on and off automatically) 

        2.Permanent On all night(it turns on at night and stay all night.)

        3.Smart brightness control(the Light stays all night and turns brighter when it detects motion)

2.Sensitive PIR Motion Inductor: With upgraded Motion Sensor Detector and Greater PIR sensor can detects people up to 26 feet within angle of 120 agrees. 2200 mah rechargeable lithium-ion battery, brighter and more long-term

3.Ultra Bright Lights: High-efficient LED lights with wide-angle illumination can improve the lighting utilization. Aootek Outdoor Solar Lights provide far brighter lighting and wider detection range than other similar lights on the market.

4.High Efficient Solar Panel Our solar Panel is more energy saving and with PET laminated solar panel and premium LED lights, which is up to 20. 5% Conversion Rate with 1. 2W Monocrystalline silicon . it's more durable and suitable for long-term use.

5.Waterproof IP65 and Heatproof Great outdoor security night light for wall, patio, garden, porch, lawn, pathway, gutter, etc. It's specifically designed to withstand extreme weather conditions.

 Click here for 40% off

Thursday, June 29, 2023

Essential Shopping Guide for Newborn Baby Girls: Must-Have Items for a Happy and Healthy Start

When shopping for a newborn baby girl, some essential items to consider include: 

  Clothing: Look for soft and comfortable onesies, sleepers, bodysuits, socks, hats, and mittens suitable for newborns. Opt for a variety of sizes to accommodate their growth. 

  Diapers and Wipes: Stock up on newborn-sized diapers and gentle baby wipes to keep your little one clean and comfortable. 

  Bedding and Blankets: Purchase a crib or bassinet with a firm mattress, fitted sheets, and cozy blankets to ensure a safe and comfortable sleep environment. 

 Feeding Supplies: If you plan to breastfeed, consider nursing bras, breast pads, and a breast pump. For bottle feeding, get a set of bottles, nipples, sterilizer, and bottle cleaning brush. 

 Baby Bath Essentials: Look for mild baby shampoo, body wash, soft washcloths, hooded towels, and a baby bathtub to make bath time enjoyable and safe. 

 Infant Car Seat: Ensure the safety of your baby while traveling by investing in a rear-facing infant car seat that meets safety standards. 

 Nursing and Burping Supplies: Nursing pillows, burp cloths, and bibs will come in handy during feeding and help keep your baby clean and comfortable. 

 Baby Care Products: Stock up on baby-friendly essentials like diaper rash cream, petroleum jelly, baby lotion, baby nail clippers, and a gentle baby brush. 

 Baby Carrier or Sling: Consider a baby carrier or sling to keep your little one close while providing comfort and convenience for both of you. 

 Baby Monitor: For peace of mind, choose a reliable baby monitor that allows you to keep an eye and ear on your baby from another room. 

 Remember, this list is not exhaustive, and the specific needs may vary based on your preferences and lifestyle.

Wednesday, June 24, 2015

Liferay Connected Services

Liferay Connected Services



Liferay Connected Services is a new online platform that offers a set of tools and services that will help our customers succeed on their Liferay projects. read more https://www.liferay.com/products/liferay-connected-services

Monday, November 5, 2012

Liferay 6.1.1 GA2 Application Security

1. Web server type and version disclosure.
Risk Impact

Being able to determine precise software versions might aid an attacker in mounting tailored attacks on the server.

Recommendation
It is recommended removing software versions in use from service banners.

Solution
Add the below property in portal-ext.properties
##
## HTTP Header Reponse
##

    #
    # Set the level of verbosity to use for the Liferay-Portal field in the HTTP
    # header response. Valid values are "full", which gives all of the version
    # information (e.g. Liferay Portal Community Edition 6.1.0 CE etc.) or
    # "partial", which gives only the name portion (e.g. Liferay Portal
    # Community Edition).
    #
    http.header.version.verbosity=partial

2.  Auto complete is enabled

 Risk Impact
 Not setting ‘AutoComplete’ attribute can allow attackers to extract valid credentials of previously logged-in users from public computers or multi-user environments.

 Recommendation
 It is recommended to set auto complete functionality to “off” for sensitive input fields.

 Solution
 Add the below property in portal-ext.properties

    #
    # Set this to true to allow users to autocomplete the login form based on
    # their previously entered values.
    #
    company.security.login.form.autocomplete=false

    #
    # Set this to true to allow users to ask the portal to send them their
    # password.
    #
    company.security.send.password=false

 3. Missing HttpOnly Attribute in Session Cookie

 Risk Impact
 In absence of HTTPOnly attribute in the set-cookie parameter, an attacker can exploit this vulnerability to gain information stored in cookie or can launch theft of modification attack by using malicious.

 Recommendation
 It is recommended enabling HTTPOnly feature for session cookies.
   
 Solution
 Add the below configuration for Tomcat {TOMCAT_HOME}\conf\context.xml file.
<Context useHttpOnly="true">

Tuesday, October 16, 2012

Liferay 6.1.1 : Disable simultaneous login from different sessions

Add the below properties in portal-ext.properties

     ##
     ## Live Users
     ##

    #
    # Set this to true to enable tracking via Live Users.
    #
    live.users.enabled=true

    #
    # Set the following to true if users are allowed to have simultaneous logins
    # from different sessions. This property is not used unless the property
    # "live.users.enabled" is set to true.
    #
    auth.simultaneous.logins=false

Monday, October 15, 2012

Disable "Request processed successfully" Message

1. Add this in portlet.xml

<init-param>
    <name>add-process-action-success-action < /name>
    <value>false
< /init-param>

2. If you want to change for a particular action rather than for all actions.

public void addBook(ActionRequest actionRequest,
                                  ActionResponse actionResponse)
                                throws IOException, PortletException {

   ...............
   .................

    String successMsg = "Book added Successfully!";

    SessionMessages.add(actionRequest, "request_processed", successMsg);
}